我正在尝试将包含字符串的treePtr->item.getInvest()转换为整数。这可能吗? 最佳答案 #include <sstream> // ... string str(*(treePtr->item.getInvest())); // assuming getInvest() returns ptr istringstream ss(str); int the_number; ss >> the_number;