我得对 C++ 中的 Ice 提出疑问。我的一种方法要求我传入一个Ice::ByteSeq
. 我想ByteSeq
从一个字符串构建这个。这种转换怎么可能?
我尝试了以下选项。
Ice::ByteSeq("bytes") // Invalid conversion to unsigned int
Ice::ByteSeq((byte*)"bytes") // Invalid conversion from byte* to unsigned int
(Ice::ByteSeq)"bytes" // Invalid conversion from const char& to unsigned int
(Ice::ByteSeq)(unsigned int)atoi("bytes") // Blank (obviously, why did I try this?)
我怎样才能做到这一点?
编辑
"bytes"
是占位符值。我的实际字符串是非数字文本信息。