关于sizeof()size()的有些问题
Posted wj0816
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于sizeof()size()的有些问题相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int main() {
char a[] = "abcdefg";
string s = a;
int len = sizeof(a); //len = 8;
int len_s = sizeof(s); // len_s = 28;
int lenth = s.size(); //lenth = 7;
int lenth_a = strlen(a);// lenth_a = 7
int lenth_s = strlen(s); // 错误的
cout << len <<" " <<len_s <<" " << lenth ;
system("pause");
}
以上是关于关于sizeof()size()的有些问题的主要内容,如果未能解决你的问题,请参考以下文章