DYF
我思故我在!
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: 参考【http://www.jianshu.com/p/e92a52770832】在安装中遇到不少问题,总结一次成功的步骤如下 一、安装步骤: 1)准备java 环境 jdk1.7 2)安装Sublime【进入官网下载】 下载 plantUML插件【下载插件】 3)安装graphviz 配置环境变量 阅读全文
posted @ 2017-03-24 16:07 o(∩_∩)o... 阅读(1699) 评论(0) 推荐(0) 编辑
摘要: 阅读目录一、编写驱动程序二、编写代码测试驱动程序三、编写HAL代码四、编写Framework代码五、编写JNI代码六、编写App参考资料:《Andriod系统源代码情景分析》《嵌入式Linux系统开发完全手册_基于4412_上册》作者:彭东林邮箱:pengdonglin137@163.com平台介绍... 阅读全文
posted @ 2015-04-08 17:12 o(∩_∩)o... 阅读(3258) 评论(0) 推荐(0) 编辑
摘要: C++的类型转换函数 reinterpret_cast、const_cast、static_cast和dynamic_cast 前三个类型转换是在编译时实现转换,dynamic_cast是在运行时进行类型转换的。 reinterpret_cast(expression) const_cast( ex... 阅读全文
posted @ 2012-06-28 23:03 o(∩_∩)o... 阅读(3583) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include #include #include #include using namespace std; const int MAX_SIZE = 256; struct node { char *str; struct... 阅读全文
posted @ 2012-01-10 00:49 o(∩_∩)o... 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include using namespace std; const int MAX_SIZE = 40; void GetWords(vector &vec) { char ... 阅读全文
posted @ 2012-01-06 00:07 o(∩_∩)o... 阅读(3200) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { vector vec; vec.push_back("Thi... 阅读全文
posted @ 2012-01-05 23:35 o(∩_∩)o... 阅读(2884) 评论(0) 推荐(0) 编辑
摘要: int main() { vector strvec; char str[] ="addd,bs,cgwg, we;f d*e"; const char * split = ",* ;"; char * p; p = strtok (str,split); while(p!=NULL) { stri... 阅读全文
posted @ 2012-01-05 23:31 o(∩_∩)o... 阅读(2961) 评论(0) 推荐(0) 编辑
摘要: 一、编码 (1) python中,字符集的处理的两个对象: str 是指带有编码的字符串 unicode 是指不带有编码的字符串 相互转换: str ------> unicode --------> str decode encode 解码 编码 1 >>>a... 阅读全文
posted @ 2011-01-11 00:05 o(∩_∩)o... 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: 搜索目录下 匹配文件中 最新的文件 路径 1 #!/usr/bin/python 2 importos 3 importglob 4 path="/homeyufei/test" 5 filelist=glob.glob("/home/yufei/tes... 阅读全文
posted @ 2011-01-09 12:46 o(∩_∩)o... 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 1.函数指针 函数指针形式说明如下: (*指针变量名)(); 其调用格式如下所示: int max(int x,int y); //定义函数max int (*funcp)();//定义返回值为整型的函数指针 funcp=max;//将函数名(函数入口地址)传给funcp,使其指向函数 //上两行代... 阅读全文
posted @ 2011-01-09 12:36 o(∩_∩)o... 阅读(1243) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页