用printf輸出string型別資料總結

old_boy_1991發表於2014-07-20

#include <stdio.h>

#include <string.h>
using namespace std;
int main()
{
   string a;
   a[0]='a';
   a[1]='/0';
   printf("%s/n",a);
   system("pause");
}

出錯: [Warning] cannot pass objects of non-POD type `struct std::string' through `...'; call will abort at runtime

printf只能輸出C語言內建的資料,而string不是內建的,只是一個擴充套件的類,這樣肯定是連結錯誤的。string不等於char*,&a代表的是這個字串的儲存地址,並不是指向字串的首地址,aa    物件中包含一個指向"string"的指標, &aar得到的是這個物件的地址,不是"string"的地址。

printf輸出string型別應如此操作!

#include<iostream>
#include<string>
using namespace std;


void main()
{
string aa="qqq";
printf("%s",aa.c_str()); //不推薦

//或者cout<<a;
}

由於string是C的一個 擴充套件型別,其資料賦值可以用其提供的方法:assign(const char *)或直接用其建構函式       
string str( "Now is the time..." );

相關文章