Define class with a data member and member functions to set and get its value : class definition « Class « C++ Tutorial






#include <iostream>
using std::cout; 
using std::cin;
using std::endl;

#include <string>
using std::string;
using std::getline;

class MyClass
{
public:
   void setName( string name )
   {      
      name = name; 
   }
   
   string getName() 
   {
      return name; 
   } 

   void displayMessage()
   {
      cout << "Welcome to the grade book for\n" << getName() << "!" << endl;
   } 
private:
   string name; 
};

int main()
{
   string n; 
   MyClass obj;
   
   cout << "Initial name is: " << obj.getName() << endl;

   cout << "\nPlease enter the name:" << endl;
   getline( cin, n );
   obj.setName( n );

   cout << endl;
   obj.displayMessage();
   return 0;
}
Initial name is:

Please enter the name:
Joe

Welcome to the grade book for
!








9.1.class definition
9.1.1.Define your first class
9.1.2.classes example
9.1.3.Create an object from a Class and call its function
9.1.4.Define a class with a member function that takes a parameter
9.1.5.Define class with a data member and member functions to set and get its value
9.1.6.Instantiating multiple objects of the class using its constructor
9.1.7.Define class to record time
9.1.8.Class objects can be assigned to each other using default memberwise assignment
9.1.9.Local Classes: A class may be defined within a function
9.1.10.containership with employees and degrees
9.1.11.Inner class
9.1.12.Friend Classes