What Are The Differences Between A C++ Struct And C++ Class?

Answer Posted / shalesh kumar

The default member and base-class access specifies are different.

This is one of the commonly misunderstood aspects of C++. Believe it or not, many programmers think that a C++ struct is just like a C struct, while a C++ class has inheritance, access specifies, member functions, overloaded operators, and so on. Actually, the C++ struct has all the features of the class. The only differences are that a struct defaults to public member access and public base-class inheritance, and a class defaults to the private access specified and private base-class inheritance.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a dynamic binding in c++?

683


What does no cap mean?

762


What are the components of stl?

833


How do you establish a has-a relationship?

797


What is an interface in oop?

757






What is the outcome of cout< a) 16 b) 17 c) 16.5

760


how to connect with oracle 9i with server in socket program in c/c++

2057


What is virtual methods?

862


What is stack unwinding?

783


What is private inheritance?

816


How does atoi function work?

846


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1591


What is encapsulation example?

729


which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?

935


Show the application of a dynamic array with the help of an example.

830