我是靠谱客的博主 清秀保温杯,最近开发中收集的这篇文章主要介绍关于char[]、const char[]、const char *,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include<iostream>
#include<string>
using namespace std;
int main() {
int a = 5;
cout << &a << endl;//取地址
cout << (void*)a << endl;//强制类型转换
char str1[] = "abc";
char str2[] = "abc";
const char str3[] = "abc";
const char str4[] = "abc";
const char* str5 = "abc";
const char* str6 = "abc";
const char* str7 = "bcd";
cout<<"char str[]:"<<(str1 == str2)<<endl;//0
cout <<"str1的地址"<<(void*)str1<<endl;
cout<<"str2的地址"<<(void*)str2<<endl;
cout << endl;
cout<< "const char str[]:"<<(str3==str4)<<endl;//0
cout<<"str3的地址"<<(void*)str3<<endl;
cout<<"str4的地址"<<(void*)str4<<endl;
cout << endl;
cout<< "const char* str(same):"<<(str5==str6)<<endl;//1
cout<<"str5的地址"<< (void*)str5 << endl;
cout<<"str6的地址"<< (void*)str6 << endl;
cout << endl;
cout<<"const char* str(different):"<<(str5==str7)<<endl;//0
cout<<"str5的地址"<<(void*)str5 << endl;
cout<<"str7的地址"<<(void*)str7 << endl;
return 0;
}

最后

以上就是清秀保温杯为你收集整理的关于char[]、const char[]、const char *的全部内容,希望文章能够帮你解决关于char[]、const char[]、const char *所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部