- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
5 Posted Topics
Receiving exceptions from TAO with different minor codes... How do I decipher what is the problem using these minor codes? The explanation given in Wikipedia is a little confusing. This is what is mentioned in Wikipedia: Each standard CORBA exception includes a minor code to designate the subcategory of the … | |
1. Do we have static classes in C++? 2. If so what are they useful for? 3. Is this the name given to classes that should not be allowed instantiation? 4. If so, how is it different from abstract classes? | |
Hello all, My understanding is that the Objects created are stored in the heap segment. What if the objects are created for a class with static data members? Do the static data alone reside in the data segment, while the rest of the members are allocated on the heap? I … | |
[CODE]class A { public: int a; A() : a(100) { } }; class B : public A { public: int b; B() : b(200){ } }; int main() { A a; B *ptrB =(B*)&a; cout<<ptrB->b<<endl; // Is there a way to get this to print 200?? }[/CODE] | |
Re: Thanks for the lovely post Asif_NSU and Chainsaw! |
The End.