2017年5月26日
摘要: 本文详细介绍了Python中的对象,名字,以及绑定。 阅读全文
posted @ 2017-05-26 17:44 珞樱缤纷 阅读(3901) 评论(0) 推荐(2) 编辑
  2017年5月25日
摘要: 本文讲解Python中一个特殊的值 __main__,以及其应用 阅读全文
posted @ 2017-05-25 16:42 珞樱缤纷 阅读(3421) 评论(0) 推荐(0) 编辑
摘要: 本文是《The Python Tutorial》(3.6.1)第九章——类的译文 阅读全文
posted @ 2017-05-25 16:25 珞樱缤纷 阅读(479) 评论(0) 推荐(0) 编辑
  2017年5月17日
摘要: 本文讲述了Python的默认参数,以及默认参数初始化,可变默认参数和不可变默认参数等高级特性 阅读全文
posted @ 2017-05-17 15:36 珞樱缤纷 阅读(32632) 评论(1) 推荐(3) 编辑
  2014年4月7日
摘要: 只说一句,数组下标与间址运算符*是等价的,即:a[i] = *(a+i),看代码:int main(int argc, char* argv[]){ double a[5] = {1, 2, 3, 4, 5}; int i; for(i = 0; i < 5; i++) printf("%.2lf\t%.2lf\t%.2lf\t%.2lf\n",a[i], *(a+i), *(i+a), i[a]);} // end of main 输出: 奇怪的是i[a]的用法,i是int类型的,a是double的数组,直接证明数组下标和间址运算符等价,即:i[a... 阅读全文
posted @ 2014-04-07 11:36 珞樱缤纷 阅读(1077) 评论(0) 推荐(0) 编辑
  2013年12月21日
摘要: 原帖及讨论:http://bbs.bccn.net/thread-82212-1-1.html原文链接:http://www.bccn.net/Article/kfyy/cyy/jszl/200608/4238.html 在C语言的学习中,对内存管理这部分的知识掌握尤其重要!之前对C中的malloc()和free()两个函数的了解甚少,只知道大概该怎么用——就是malloc然后free就一切OK了。当然现在对这两个函数的体会也不见得多,不过对于本文章第三部分的内容倒是有了转折性的认识,所以写下这篇文章作为一个对知识的总结。这篇文章之所以命名中有个“浅谈”的字眼,也就是这个意思了!希望对大家有一 阅读全文
posted @ 2013-12-21 09:44 珞樱缤纷 阅读(218) 评论(0) 推荐(0) 编辑
  2013年12月18日
摘要: bool static my_var_initialized = false; 偶然写出了这样一句C代码,环境是visual studio 2012,工程是Compile as C的,竟然报了好几个错误: 错误 1 error C2065: “bool”: 未声明的标识符 g:\visualstudio\2012\console\helloc\helloc\test.c 12 1 HelloC 错误 5 error C2065: “true”: 未声明的标识符 g:\visualstudio\2012\console\helloc\helloc\test.c 17 1 HelloC 写... 阅读全文
posted @ 2013-12-18 20:03 珞樱缤纷 阅读(6349) 评论(0) 推荐(1) 编辑
摘要: 一、定义 integral promotion: "A character, a short integer, or an integer bit-field, all either signed or not, or an object of enumeration type, may be ... 阅读全文
posted @ 2013-12-18 13:07 珞樱缤纷 阅读(1182) 评论(0) 推荐(1) 编辑
  2013年11月28日
摘要: 上述LinearLayout中只有一个TableLayout,在 ... 阅读全文
posted @ 2013-11-28 21:35 珞樱缤纷 阅读(1849) 评论(0) 推荐(0) 编辑
  2013年11月20日
摘要: 为listView设置adapter,代码如下:SimpleAdapter simpleAdapter = new SimpleAdapter(this, listItems, R.layout.main_item, new String[]{"icon, name, singer"}, new int[]{R.id.icon, R.id.song_name, R.id.singer}); listView.setAdapter(simpleAdapter);报错如下:11-20 13:05:11.010: E/Bitm... 阅读全文
posted @ 2013-11-20 13:25 珞樱缤纷 阅读(1235) 评论(0) 推荐(1) 编辑