我有一个字符串。我想将其转换为字符串中提到的数据类型。
例如:字符串 =>“int”。
现在我必须用字符串中的内容初始化一个变量。
int value;
我怎样才能做到这一点?
我有一个字符串。我想将其转换为字符串中提到的数据类型。
例如:字符串 =>“int”。
现在我必须用字符串中的内容初始化一个变量。
int value;
我怎样才能做到这一点?
不知道这是否会解决您的整个问题,但这只是一个开始:
#include <iostream>
using namespace std;
template <class T>
class myType
{
public:
T obj;
void show()
{
cout << obj << endl;
}
};
void CreateType(char stype)
{
switch(stype)
{
case 'i':
myType<int> o ;
o.obj = 10;
cout << "Created int " << endl;
o.show();
break;
case 'd':
myType<double> o1 ;
o1.obj = 10.10;
cout << "Created double " << endl;
o1.show();
break;
}
}
int main()
{
CreateType('i');
CreateType('d');
return 0;
}
如果您的字符串包含如下内容:“(类型)(分隔符)(值)”,
例如(如果分隔符是“$$$”):“int$$$132”或“double$$$54.123”你应该写一个小解析器。
const std::string separator = "$$$";
const unsigned int separatorLength = 3;
std::string str = "int$$$117";
std::string type, value;
unsigned int separatorPosition = str.find(separator);
type = str.substr(0, separatorPosition);
value = str.substr(separatorPosition + separatorLength);
void *variable;
if (type == "int"){
//convert value to int and store it in void *
} else
if (type == "double"){
//convert value to double and store it in void *
} else
if (type == "char"){
//convert value to char and store it in void *
}