c++字符串比较

#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    char str1[]       = "abc";
    char str2[]       = "abc";
    const char str3[] = "abc";
    const char str4[] = "abc";
    const char* str5  = "abc";
    const char* str6  = "abc";
    
    cout << boolalpha << ( str1==str2 ) << endl; // 输出什么?
    cout << boolalpha << ( str3==str4 ) << endl; // 输出什么?
    cout << boolalpha << ( str5==str6 ) << endl; // 输出什么?

    return 0;
}

// out put:
0
0
1

str1    0x0012ff60 "abc"    char [4]
str2    0x0012ff54 "abc"    char [4]
str3    0x0012ff48 "abc"    const char [4]
str4    0x0012ff3c "abc"    const char [4]
str5    0x00415800 "abc"    const char *
str6    0x00415800 "abc"    const char *

字符数组用变量名引用是代表首地址(而argc是整形, 其引用就是其值):
str1-->0x0012ff60

str1,str2,str3,str4都分配在栈上. str5,str6分配在静态数据区(进程空间内)
str1,str2,str3,str4和str5,str6的地址差别很大

1. 字符数组的引用.
2. 变量的空间分配

转载于:https://www.cnblogs.com/zhuxiongfeng/archive/2009/04/28/1445720.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值