我想投一個char來使用此功能的字符串:(字符串)字符類型轉換
int charIndexDistance (char a, char b)
{
if (indexical) {
string test_a = convertOntology((string)a, 0);
string test_b = convertOntology((string)b, 0);
cout << test_a << " " << test_b << endl;
int test = abs(char_index[a] - char_index[b]);
return test; //measure indexical distance between chars
} else
return 1;
}
,但我得到這個「錯誤C2440:‘類型轉換’:無法從‘字符’轉換爲「STD :: string「
什麼是thr問題?以及如何將字符串轉換爲字符串 - 我應該使用字符串附加?
也行,cout
和int test
是用於調試目的和將在後面
謝謝你 - 感謝你的專業知識 – 2013-03-05 21:23:52