Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 C++ 中将 int 转换为字符串的最简单方法
有谁知道如何进行这种转换?
我需要将 intptr_t 类型连接到字符串,因此需要对其进行转换。
它不是 int,因为它是 64 位操作系统。
如果我错了请纠正我谢谢
intptr_t只是一个数字。所以:
intptr_t
简单的:
std::to_string(ip);
好吧,如果你有 C++11,那就简单了。
std::stringstream ss; ss << ip; ss.str();
(或者,如果您愿意:
ss << std::hex << ip;
)