首页 > 代码库 > C-字符串常量
C-字符串常量
相同的字符串常量是共享的,而且是不可写的。
1 #include <iostream> 2 using namespace std; 3 4 char *string1, *string2; 5 6 int main() { 7 string1 = "abcd"; string2 = "abcd"; 8 if(string1 == string2) printf("strings are shared!\n"); 9 else printf("strings are NOT shared!\n");10 //有可能运行时错误11 //string1[0] = ‘1‘;12 if(*string1 == ‘1‘) printf("string are writable!\n");13 else printf("string are NOT writable!\n");14 15 return 0;16 }
输出:
$ ./a.exestrings are shared!string are NOT writable!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。