ChinaUnix.net
相关文章推荐:

intialization list

编程中出现的错误; 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)

相关讨论

list 的分片(slice) >>> li ['a', 'b', 'mpilgrim', 'z', 'example'] >>> li[1:3] ['b', 'mpilgrim'] >>> li[1:-1] ['b', 'mpilgrim', 'z'] >>> li[0:3] ['a', 'b', 'mpilgrim'] 总的原则是“左包括,右不包括” Slice简写 >>> li ['a', 'b', 'mpilgrim', 'z', 'example'] >>> li[:3] ['a', 'b', 'mpilgrim'] >>> li[3:] ['z', 'example'] >>> li[:] ['a', 'b', 'mpilgrim', 'z', 'example'] extend与append的区别 >>> l...

by exp07 - Linux文档专区 - 2008-06-30 14:40:57 阅读(480) 回复(0)

本帖最后由 yshihyu 于 2012-08-24 10:32 编辑 [code]# Script to create simple menus and take action according to that selected # menu item # while : do clear echo "-------------------------------------" echo " Main Menu " echo "-------------------------------------" echo "[1] Show Todays date/time" echo "[2] Show files in current directory" echo "[3] Show calendar" ...

by yshihyu - Shell - 2012-08-24 16:40:36 阅读(1178) 回复(3)

大佬们: 我常常能收到51CTO的MAIL list,里面有IT的新闻和精彩的帖子。感觉挺好的。CU的管理团队可以借鉴这种方法以拉住老用户。

by plumlee - 版主会议室 - 2011-01-13 22:47:03 阅读(66) 回复(7)

Security-Solution Design 请联系我 Lucy 13717809615 MSN:yangcheng116@hotmail.com QQ: 331991576 Job description 1. Solution design job role is a kind of pre-sale position in IBM Global Technology Services (GTS). Specifically we are looking for a solution design with major skill on security, network can be a plus. 2. Closely and actively work with sales team to respond to customer's IT requirem...

DesignSecuritySolution

by Lucyyang717 - 猎头招聘 - 2010-11-08 23:01:04 阅读(1472) 回复(3)

在2.4版本中,引入了一种特殊的链表-通用双向链表,它是内核中实现其它链表的基础,也是面向对象的思想在C语言中的应用。在等待队列的实现中多次涉及与此链表相关的内容。 1.通用双向链表 在include/linux/list.h中定义了这种链表: struct list_head { struct list_head *next, *prev; }; 这是双向链表的一个基本框架,在其它使用链表的地方就可以使用它来定义任意一个双向链表,例如: struct foo_list { i...

by Jeffoery - Linux文档专区 - 2009-11-11 17:30:23 阅读(590) 回复(0)

今天看django的代码,发现有地方用到了类似这样的方法: a=[1,2,3] b=a[:] 自己试验了一下,发现这个用法相当于是调用了copy.copy函数对a进行copy。 结合《Python 拷贝对象(深拷贝deepcopy与浅拷贝copy)[color="#295200"]》这篇文章,如下: a = [1, 2, 3, 4, ['a', 'b']] b=a[:] a.append(5) a[4].append('c') >>>a [1, 2, 3, 4, ['a', 'b', 'c'], 5] >>>b [1, 2, 3, 4, ['a', 'b', 'c']] 本文来自ChinaUnix博客,如果...

by pgt112you - Python文档中心 - 2009-10-14 21:54:40 阅读(2512) 回复(0)

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 阅读(1362) 回复(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 阅读(1072) 回复(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 阅读(1150) 回复(0)