Abstract class

Sep 16, 2013 at 8:34am
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 

Sep 16, 2013 at 9:00am
Topic archived. No new replies allowed.