Abstract class

Abstract class has pure virtual function defined something like
 
  virtual void f() = 0;


Question:- Why cant we have something like
 
  virtual void f() = 1000;// or any integer value 

Topic archived. No new replies allowed.