ChinaUnix.net
相关文章推荐:

TCL list

怎么有perl,而没有tcl的啊,哪位高手搞个tcl论坛好不好

by xzyhope - 站务交流 - 2006-03-24 15:30:45 阅读(1546) 回复(7)

相关讨论

编程中出现的错误; 1 variable i 没有定义 int i 2 setVisible拼写错误 import java.awt.*; public class A { public static void main(String args[])throws Exception { Frame f=new Frame ("list Text"); f.setVisible(true); list list=new list(7); TextField tf=new TextField(); list.add("1"); list.add("2"); list.add("3"); list.add("4"); list.add("5"); f.add(list,"Center"); f.add(tf,"...

by xialina - Java文档中心 - 2008-12-03 22:29:34 阅读(1127) 回复(0)

http://hi.baidu.com/xipf/blog/item/085f996228e3b4d8e6113a1d.html http://hi.baidu.com/lvgb/blog/item/1b983e2a1d64823e5243c16c.html http://linux.about.com/library/cmd/blcmdln_tcl.htm http://www.lslnet.com/linux/dosc1/45/linux-316340.htm 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/27594/showart_1308200.html

by zhangyan215 - HP文档中心 - 2008-10-15 18:25:19 阅读(2300) 回复(0)

我在tcl脚本中想实现shell命令“cd”, 用exec cd $myDir 但exec会开一个新的进程,并在新的进程中执行cd,执行完后退出(我自己的解释,不知道对不对?),所以执行cd命令好像没有用。谁能帮忙解决一下?

by fightforever - Shell - 2003-08-08 16:36:51 阅读(4919) 回复(2)

In IP, you can use dotnet list and generic list and Python list 1: Access dotnet Array in IP: import clr from System.Collections import * donet_list = Arraylist( [1, 2, 3, 4] ) #init with python list for e in donet_list: print e 2: Access Python list: py_list = [ 1, 2, 3, 4 ] for e in py_list: print 3 3: Acess dotnet generics list from System.Collections.Generic import ...

by junsi - Python文档中心 - 2008-12-14 00:11:29 阅读(1363) 回复(0)

So mang domain knowledge to be study Firewall QoS VPN PPP L2TP DDNS DHCP TR-069 ... Go!!!!!!!!!!!!! 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/41845/showart_1384716.html

by Boatman_yang - 网络技术文档中心 - 2008-11-06 15:11:47 阅读(1074) 回复(0)

>>> li = [2,9,8,6] >>> [elem*2 for elem in li] [4, 18, 16, 12] >>> li [2, 9, 8, 6] >>> 为了便于理解它,让我们从右向左看。li 是一个将要映射的 list。Python 循环遍历 li 中的每 个元素。对每个元素均执行如下操作:首先临时将其值赋给变量 elem,然后 Python 应用函数 elem*2 进行计算,最后将计算结果追加到要返回的 list 中。 需要注意是,对 list 的解析并不改变原始的 list。 将一个 list 的解析结果赋值给对其映射...

by atyu30 - BSD文档中心 - 2007-11-09 01:05:25 阅读(1151) 回复(0)

Exercises: 1. Construct a prefix list that permits only the 192.168.1.0/24 network. ip prefix-list test1 seq 5 permit 192.168.1.0/24 2. Construct a prefix list that denies network 119.0.0.0, and permits all other prefixes (including all subnets of 119.0.0.0). ip prefix-list test2 seq 5 deny 119.0.0.0/8 ip prefix-list test2 seq 10 permit 0.0.0.0/0 le 32 3. Construct a prefix list that permits on...

by tiger001 - 网络技术文档中心 - 2007-04-26 21:10:56 阅读(581) 回复(0)