问题描述
- C++常量区的量是一定会把相同的量合并?
-
指针定义同时赋个字符串,这个字符串应该是无法修改的吧。有人说相当于有个常量字符数组存放字符串,再用指针指向该数组。
某处笔试题#include <iostream> #include <Windows.h> using namespace std; int main() { char str1[] = "abc"; char str2[] = "abc"; const char str3[] = "abc"; const char str4[] = "abc"; char *str5 = "abc"; char *str6 = "abc"; const char *str7 = "abc"; const char *str8 = "abc"; cout<<(str1==str2)<<endl; cout<<(str3==str4)<<endl; cout<<(str5==str6)<<endl; cout<<(str7==str8)<<endl; system("pause"); return 0; }
环境VS2010,结果0011
那么为什么2个指针指向的字符串位置都一样?被合并了吗?
又为什么2个const数组,str3 str4的地址不一样?
解决方案
会有可能优化 编译器发现是相同常量就用同一个地址
解决方案二:
2个const数组,str3 str4的地址不一样有可能优化 编译器发现是相同常量就用同一个地址
时间: 2024-11-08 19:52:24