请问大神一个C++的问题这个程序运行结果是什么啊?是不是有错啊?
请问大神一个C++的问题,#include<iostream>classtestclass{inti;floatj;public:testclass(){};testcl...
请问大神一个C++的问题, #include<iostream> class testclass{ int i; float j; public: testclass(){};
testclass(int x,float y){
i=x;
j=y;}
operator int(){rerurn i;}
operator float(){rerurn j;}
};
void main(){
testclass p(5,8)
std::cout<<p;
} 展开
testclass(int x,float y){
i=x;
j=y;}
operator int(){rerurn i;}
operator float(){rerurn j;}
};
void main(){
testclass p(5,8)
std::cout<<p;
} 展开
1个回答
展开全部
调用不明确,不会通过编译。
改成这样可以运行了
#include<iostream>
class testclass{
int i; float j;
public:
testclass(){};
testclass(int x,float y){
i=x;
j=y;
}
operator int(){return i;}
operator float(){return j;}
};
void main(){
testclass p(5,8);
std::cout<<(int)p<<(float)p;
}
改成这样可以运行了
#include<iostream>
class testclass{
int i; float j;
public:
testclass(){};
testclass(int x,float y){
i=x;
j=y;
}
operator int(){return i;}
operator float(){return j;}
};
void main(){
testclass p(5,8);
std::cout<<(int)p<<(float)p;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询