fork download
  1. /**
  2.  * ~~~~~ One argument constructor with operator overloading ~~~~~
  3.  *
  4.  * Demonstrates which is called when, when both overloaded assignment operator
  5.  * and one-argument constructor is defined.
  6.  *
  7.  * Observation: During object creation, one argument constructor is called, while during
  8.  * object assignment, operator function is called.
  9.  */
  10.  
  11. #include <iostream>
  12. using namespace std;
  13.  
  14. class A{
  15.  
  16. private:
  17. static int a;
  18. public:
  19. A(int);
  20. void print();
  21. static void operator =(int);
  22. };
  23.  
  24. // Allocation for static
  25. A::a;
  26.  
  27. // One argument constructor
  28. A::A(int b){
  29. cout<<"Inside one argument constructor"<<endl;
  30. this->a=b;
  31. }
  32.  
  33. static void A:: operator =(int b){
  34. cout<<"Inside operator function"<<endl;
  35. this->a = b;
  36. }
  37.  
  38. void A::print(){
  39. cout<<"Value of a ="<<a<<endl;
  40. }
  41.  
  42. int main() {
  43.  
  44. /* INITIALIZATION */
  45. A obj1=2;
  46. obj1.print();
  47.  
  48. /* ASSIGNMENT */
  49. obj1=3;
  50. obj1.print();
  51.  
  52. return 0;
  53. }
Compilation error #stdin compilation error #stdout 0s 3340KB
stdin
Standard input is empty
compilation info
prog.cpp:21:28: error: ‘static void A::operator=(int)’ must be a nonstatic member function
  static void operator =(int);
                            ^
prog.cpp:17:13: error: ‘int A::a’ is private
  static int a;
             ^
prog.cpp:25:4: error: within this context
 A::a;
    ^
prog.cpp:25:1: error: ‘a’ in ‘class A’ does not name a type
 A::a;
 ^
prog.cpp:33:13: error: prototype for ‘void A::operator=(int)’ does not match any in class ‘A’
 static void A:: operator =(int b){
             ^
prog.cpp:14:7: error: candidates are: A& A::operator=(A&&)
 class A{
       ^
prog.cpp:14:7: error:                 A& A::operator=(const A&)
stdout
Standard output is empty