我正在尝试查找某些变量的类型。例如;
Short s=0;
If (s<10)
//Do something
我想要这样的输出: “短整数”
伪代码:
VisitBinaryOperator(*binOp){
Expr *left=binOp->getlhs;
Lefttype=left->gettype;
Cout<<lefttype.GetAsString();
//Same things for right
}
这段代码为什么写“ int”而不是“ short”?