#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { //1.C++ 字串 成員函式 string a1 = "happy birthday"; string * a2 = new string("happy birthday"); //o (6)string& append (const string& str); / += //將 str 串接到物件目前內容的最後面。 cout<<" a1 = "<