//************************************************** //alternative syntax could be used to initialize //const variables end object without constructor //************************************************** #include using namespace std; //-------------------------------------------------- class oper{ const int numa; const int numb; public: //this way initialize const variables when copiler create object oper(int a, int b):numa(a),numb(b){} int getnuma(){return numa;} int getnumb(){return numb;} }; //================================================== int main(){ oper opera(1,2); cout<