CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: vasantharam

Search: Search took 0.06 seconds.

  1. Replies
    2
    Views
    4,027

    multiple inheritence help

    #include <iostream>
    using namespace std;
    class A
    {
    public:
    int a;
    A() : a(1234) {};
    };
  2. Replies
    10
    Views
    8,385

    Re: namespaces, copyconstructors, friends

    Oh the smily was a random pick, didnt realize it means mad-avatar!!!

    If there is a reason to have two foo classes, it probably means, they are
    two different flavors of something.

    Say class...
  3. Replies
    10
    Views
    8,385

    Re: namespaces, copyconstructors, friends

    well the point is the specific constructs in c++ questioned may have been designed
    better(or even left out). I want to know if I am wrong, if I am where? This forum is
    for such open discussions...
  4. Replies
    10
    Views
    8,385

    namespaces, copyconstructors, friends

    1. Why could C++ have not disabled a default copy constructor and why shouldnt it have demanded a
    explicit copy constructor, if such a use case of the class exist, it would have avoided...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured