摘要: 大家可以确定下面的输出什么吗? string a = "hello world"; string b = a; if (a == b) { cout << "true"<<endl; } else { cout << "false"<<endl; } if (a.c_str() == b.c_str 阅读全文
posted @ 2021-01-14 10:20 Yan_Hao 阅读(104) 评论(0) 推荐(0) 编辑