c++中的一些会用到的函数

 1 #include<iostream>
 2 #include<string>
 3 using namespace std;
 4 int main() {
 5     string s("HelloWorld");
 6     // 下面的两个地址是不一样的,但是地址的内容是一样的
 7     string* ch = &s;
 8     const char *b = s.c_str();
 9 
10     char a[20];
11     strcpy(a, s.c_str());//结尾会复制一个'\0'
12     cout << a << endl;//输出的是 a 指向的字符串
13 
14     int n[5]={1,2,3,4,5};
15     cout << n << endl;//输出的是n代表的地址
16     char c[] = {'a','b','c','\0'};//如果不加'\0'后面会有乱码,可以用0初始化
17     //或者memset(c,0,arraylen);
18     cout << c << endl;
19     system("pause");
20     return 0;
21 }

 

posted @ 2014-06-03 15:56  soul390  阅读(190)  评论(0编辑  收藏  举报