随笔分类 -  C/C++

C++与Lua通信
摘要:参考文章地址:1.Lua与C++通信原理说明:http://blog.csdn.net/musicvs/article/details/84407072.Lua中的堆栈:http://blog.csdn.net/musicvs/article/details/84450273.Lua与C++通信De... 阅读全文

posted @ 2014-07-10 15:54 linchaolong 阅读(457) 评论(0) 推荐(0)

VS使用技巧
摘要:原文地址:http://www.cnblogs.com/rond/archive/2012/03/05/2380367.htmlTODO注释在注释中记录一些未完成或等待完成的事,可以在任务列表窗口中查看。任务列表窗口:视图--其他窗口--任务列表注意:C/C++默认是不打开枚举注释任务的,如果任务列... 阅读全文

posted @ 2014-07-01 18:29 linchaolong 阅读(177) 评论(0) 推荐(0)

C/C++整数与字符串互转
摘要:将char*类型字符串转换为int类型的整数 char* add = "1"; int num= atoi(add);将int类型整数转换为char*类型字符串 int iTotal = 1; char total[30] = {0}; sprintf(total,"%d",i... 阅读全文

posted @ 2014-06-30 11:28 linchaolong 阅读(175) 评论(0) 推荐(0)

导航