如何在omnet ++(inet)中将IPv4Address
转换为char
?
我想使用emit(),我需要将ipv4Address转换为emit()中可用的类型之一。
答案 0 :(得分:1)
根据definition of IPv4Address in the source code of INET v2.99.1判断,我会说其str()
方法可以将文本表示形式提供为std::string
。如果您需要char*
,可以拨打the string's c_str()
method。