0
如何在omnet ++(inet)中將IPv4Address
轉換爲char
? 我想使用emit(),我需要將ipv4Address轉換爲其中一種類型可用於emit()。我如何將IPv4Address轉換爲omnet ++(inet)中的char?
如何在omnet ++(inet)中將IPv4Address
轉換爲char
? 我想使用emit(),我需要將ipv4Address轉換爲其中一種類型可用於emit()。我如何將IPv4Address轉換爲omnet ++(inet)中的char?
通過definition of IPv4Address in the source code of INET v2.99.1來判斷,我會說它的str()
方法可以提供文本表示形式爲std::string
。如果您需要char*
,您可以致電the string's c_str()
method。
我似乎記得,這通常只是原始的C++代碼?看看ipv4Address對象,看看它裏面有什麼可以幫助你。如果您仍然陷入困境,請更新您的答案,並提供更多關於您所嘗試的信息。 –