What is Difeerence between List obj=new ArrayList(); and
ArrayList obj=new ArrayList()?
No Answer is Posted For this Question
Be the First to Post Answer
What is constructor in oop?
WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET
suppose A is a base class and B is the derved class. Both have a method foo which is defined as a virtual method in the base class. You have a pointer of classs B and you typecast it to A. Now when you call pointer->foo, which method gets called? The next part of the question is, how does the compiler know which method to call?
what is new operator in c++
Can a destructor be called directly?
What is difference between abstraction and encapsulation?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
What is object in oop with example?
what are the different types of qualifier in java?
what is the virtual function overhead, and what is it used for ? i hope i can get and appropriate answers, thanks a lot....
why to use template classes in c++?
How Do you Code Composition and Aggregation in C++ ?