2
我想製作一個可以動態形成轉義序列字符的程序。 請看下面我的代碼。如何動態創建轉義序列?
void ofApp::keyPressed(int key){
string escapeSeq;
escapeSeq.push_back('\\');
escapeSeq.push_back((char)key);
string text = "Hello" + escapeSeq + "World";
cout << text << endl;
}
例如,如果我按 'N' 鍵,我期待它打印出來
你好
世界
但它實際上打印出
你好\ nWorld
如何使程序正常工作?提前致謝!