advertisement
Login | Register   
  Include Code  Search Tips
TODAY'S HEADLINES  |   ARTICLE ARCHIVE  |   FORUMS  |   TIP BANK
Browse DevX
Partners & Affiliates
advertisement
advertisement
advertisement
advertisement
Average Rating: 1/5 | Rate this item | 1 user has rated this item.

Dispelling Common C++ Class Myths

Ovidiu Cucu writes that struct and class keywords aren't as different as you might think. 

advertisement

Among C++ programmers, a few common myths about struct and class keywords are often repeated, including the following:

  1. A struct is a value type, while a class is a reference type.
  2. A struct contains only primitive data members and is designed for small objects.
  3. A struct cannot inherit from another struct or class, and it cannot be the base of a class.
  4. Unlike class, struct can be instantiated without using the new operator.

Ovidiu Cucu explains why all of these myths are false and concludes, "In C++ programming language, there is no difference between CLASSES defined by using struct or class keywords, except the default access to members and base classes."

View article

   
Please rate this item (5=best)
 1  2  3  4  5
advertisement