• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Looking for relevant information about classes in C++

Mystofolyse

Weaksauce
Joined
Jun 25, 2006
Messages
103
Any free comprehensive and/or in-depth information will suffice. I am a student looking for some more sources to study. Thanks! :)
 
The "class" keyword? You might want to try the Books on C++ Thread that went through this forum last week.

Or how to design and write your own classes? I guess some of those C++ books will help, but maybe you want some books on OO design and design patterns. Is that the case?

It's hard to understand what you mean when you say "the CLASS in C++". Can you be more specific?
 
I think he's looking for information on working with class keyword in the C++ language
 
I think he's looking for information on working with class keyword in the C++ language
Even if so, he'll need to be more specific if he wants an answer here; if he wants general information, I think the references in the other thread should do.
 
Well specifically, I'm looking for object oriented design principles, practices, etc. Anything to do with inheritance, polymorphism, and function overloading is greatly appreciated. Sorry for not specifying late last night.
 
Design Patterns: Elements of Reusable Object-Oriented Software by Gamma et al (ISBN 0201633612) is the cannoical reference for this. It's not a tutorial -- so it's not about inheritance and polymorphism and function overloading ... it's about applying those practices in design.

If you want to come to understand the basics of those language features, then you're probably best off with one of the C++ tutorial books in the other thread.
 
Back
Top