程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 析構-C++ 新手求解。。。。。

析構-C++ 新手求解。。。。。

編輯:編程綜合問答
C++ 新手求解。。。。。

//#include
#include

using namespace std;

#include

void main()
{
string str1 = "Eventually I stopped caring...";
string str2 = "but that was the '80s so nobody noticed.";

str1.append( str2, 25, 15 );
cout << "str1 is " << str1 << endl; 

}

F:\C text\t.cpp(13) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'class std::basic_string,class std::allocator >' (or there is no acceptable conversion)
Error executing cl.exe.

最佳回答:


你這樣寫,需要加命名空間,在程序開頭寫using namespace std;
如果你不加這句,你要輸出語句就得這麼寫:std::cout<<"str is"<<str1<<endl;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved