我一直在阅读和阅读提出类似问题的帖子,但我的疑虑仍然存在。
所以我有一个这样的课程:
class Instruction{
public:
unsigned int getAddress();
uint32_t getValue();
private:
unsigned int address;
uint32_t value;
}
然后我需要将十进制转换为十六进制并将其写入字符串。我看到了this question所以我在答案中使用了函数并将它放在我的Utils.hpp类中:
Utils.hpp
class Utils{
public:
...
static template< typename T > static std::string toHex( T &i );
}
Utils.cpp
template< typename T >
std::string toHex( T &i ){
std::stringstream stream;
stream << "0x" << std::setfill ('0') << std::setw(sizeof(T)*2)
<< std::hex << i;
return stream.str();
}
std::string Utils::toHex<unsigned int>();
std::string Utils::toHex<uint32_t>();
主要是我有这个:
std::stringstream stream;
Instruction *newInstruction = new Instruction(addr, inst); // this attributes the parameters
stream << Utils::toHex(newInstruction->getAddress()) << " "
<< Utils::toHex(newInstruction->getValue()) << endl;
我得到以下编译错误:
main.cpp: In function 'int main(int, char**)':
main.cpp:39: error: no matching function for call to 'Utils::toHex(unsigned int)'
Utils.hpp:16: note: candidates are: static std::string Utils::toHex(T&) [with T = unsigned int]
main.cpp:41: error: no matching function for call to Utils::toHex(uint32_t)'
Utils.hpp:16: note: candidates are: static std::string Utils::toHex(T&) [with T = unsigned int]
make: *** [main.o] Error 1
我真的需要帮助才能弄明白我是如何做到这一点的,因为我对这些东西比较陌生。
提前谢谢你!
答案 0 :(得分:4)
您应该toHex
接受 const 对T
:toHex(const T&)
的引用。否则你不能传递临时值,而函数调用的结果是暂时的。
另请注意,您所指的问题/答案根本不适用于参考文献,它有
std::string int_to_hex( T i )
答案 1 :(得分:1)
您在函数定义中缺少Utils::
前缀,如前所述,在引用中const
。更正后的Utils.cpp应为:
template< typename T >
std::string Utils::toHex(const T &i ){
std::stringstream stream;
stream << "0x" << std::setfill ('0') << std::setw(sizeof(T)*2)
<< std::hex << i;
return stream.str();
}