我使用strcpy_s時發現一些錯誤,無法弄清楚我做錯了什麼。C++ - strcpy_s參數錯誤
代碼:
Player.hpp:
string name;
Player(string);
Player.cpp:
Player::Player(string newName)
{
strcpy_s(name, name.size(), newName);//error is here
health = 20;
}
的錯誤:
- 在函數調用的參數太多
- 重載函數「strcpy_s」沒有實例相匹配的參數列表
哦!所以你只需要在使用char *時使用strcpy? – 2012-07-13 22:01:32
@JeanFinley正是: – betabandido 2012-07-13 22:03:19
酷!謝謝=) – 2012-07-13 22:04:21