庄稼汉玩Linux

导航

 

2015年4月10日

摘要: >>> aList = [1,2,3,4,5,6,7]>>> aList[2:][3, 4, 5, 6, 7]>>> aList[10:][]>>> aList[-2:][6, 7]>>> aList[:2][1, 2]>>> aList[:-2][1, 2, 3, 4, 5] 1 def appe... 阅读全文
posted @ 2015-04-10 13:58 庄稼汉玩Linux 阅读(168) 评论(0) 推荐(0)
 

2015年1月9日

摘要: ByteOrder: 1 #include 2 3 int main(int argc, char**argv) 4 { 5 union { 6 short s; 7 char c[sizeof(short)]; 8 } un; 9 ... 阅读全文
posted @ 2015-01-09 22:16 庄稼汉玩Linux 阅读(140) 评论(0) 推荐(0)
 

2014年12月29日

只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-12-29 09:06 庄稼汉玩Linux 阅读(4) 评论(0) 推荐(0)