我想创建一个公共 api,它将一个字符串作为参数,并将这个字符串放在我在该 Api 中的另一个字符串中放置格式说明符的位置。
e.g. string PrintMyMessage( const string& currentValAsString)
{
string s1("Current value is %s",currentValAsString);
return s1;
}
目前我正在关注构建错误。
1>d:\extra\creatingstrwithspecifier\creatingstrwithspecifier\main.cxx(8): error C2664: 'std::basic_string<_Elem,_Traits,_Ax>::basic_string(const std::basic_string<_Elem,_Traits,_Ax> &,unsigned int,unsigned int)' : cannot convert parameter 2 from 'const std::string' to 'unsigned int'
1> with
1> [
1> _Elem=char,
1> _Traits=std::char_traits<char>,
1> _Ax=std::allocator<char>
1> ]
1> No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
我只是想知道什么是完成这项任务的更好方法。