C++/C
文章平均质量分 76
renzhe20092584
这个作者很懒,什么都没留下…
展开
-
C++学习之一
coutcin >> str; #include . 这个是头文件long atoi(char *); 这个是把字符转换整数double atof(char *); 这个是转换浮点char itoa(int i); 把整数转为字符串原创 2012-11-26 12:56:46 · 78 阅读 · 0 评论 -
c++学习之一
1.取出字符串字符是不是汉子判断ASCLL码http://baike.baidu.com/view/990547.htmstring test = "发顺丰";CCLog("%d %d", (test.substr(0,1)).compare(" "), (test.substr(0,1)).compare("~"));如果取出的字符是汉子test.sub原创 2012-11-26 16:36:13 · 178 阅读 · 0 评论 -
第八章--多态
红:一级标题 粉:二级标题 蓝:关键点1.运算符重载两个对象(某些数值)相加例子:complex complex::operator + (complex c2){return complex(real +c2.real ,image+c2.image)}对象:c3= c1+c2 complex::operator=c1+=+(co原创 2013-05-01 13:51:04 · 532 阅读 · 0 评论 -
C++常用之一
1.string和int类型相互转换int stringToInt(string str,int posNum){ int aa; char bu[7]; strcpy(bu,str.c_str()); sscanf(bu,"%d",&aa); return aa;}string intToString(int p ,int原创 2013-07-13 22:40:41 · 209 阅读 · 0 评论 -
CppBase
1.数据类型的相互转换int 转换到 stringchar buf[10]sprintf(buf, "%d", 100);string b = buf;字符串 20%sprintf(buf, "%d%%", pNum);原创 2014-06-21 14:36:58 · 557 阅读 · 0 评论 -
Cpp常用方法
1.判断字符串是不是汉字原创 2014-06-21 15:30:57 · 833 阅读 · 0 评论 -
C++注意事项
1.命名空间的使用参考:http://www.iteye.com/news/26976using namespace std; 不提倡using std::string; 提倡 最好在.cpp文件里其他文件引入不进去原创 2013-07-13 22:46:24 · 542 阅读 · 0 评论 -
c++关键字
百度百科参考1.type1. 定义typedefintsize;2.const 修饰typedefconstchar* pstr;char * const cp : 定义一个指向字符的指针常数,即const指针,常指针。const char* p : 定义一个指向字符常数的指针,即常量指针。char const*原创 2014-02-23 19:16:10 · 516 阅读 · 0 评论 -
mac c cpp
1.mac编译连接c/c原创 2014-09-15 22:52:55 · 853 阅读 · 0 评论