Welcome Guest ( Log In | Register )




                Web Hosting Guide

 
Reply to this topicNew Topic
C++: Basic Classes, classes, objects, access labels, members, inline functions
bluefish
post Jan 7 2007, 11:19 PM
Post #1


Member [ Level 2 ]
Group Icon

Group: Members
Posts: 71
Joined: 16-December 06
Member No.: 18,419


This tutorial assumes that you have a basic knowledge of C++.

You know how to use built-in types, like ints, doubles, chars, etc. You should know some types that are part of the STL, like vector, etc.

Those types that come in the STL are just C++; you can create your own types just like those! Non built-in types are referred to as classes. To create a class, you just use the keyword class, the name of the class, and curly brackets.

CODE
//A class named MyClass
class MyClass {
};


In fact, that is all we need to create variables, pointers, or references to that class.

CODE
MyClass a;
MyClass *b = &a;
MyClass &c = a;


The variable "a" is an object of type MyClass.

Of course, something like that hardly does anything. We need to create members of that class - ways it can be created (called constructors), operations that we can perform on it (called member functions), and data it can hold (called data members).

Data Members
I'll start with data members, because you often need them to use constructors and member functions.
A data member is a piece of data, the same as you use normally. It can be a built-in type, or another class type (i.e. vector). A class can have as many data members as you want or need. To declare a data member, simply put the declaration in the body of the class as follows:

CODE
#include <vector>

class MyClass {
int i;
std::vector<int> v;
};


So MyClass has two data members: i and v. Normal rules apply. You can also use pointers and references as usual.
- An important thing to note is that i and v are uninitialized. We'll talk about initializing data members later.
- Also, each object of type MyClass has its own different data. The data is referred to by the same name, but each object of type MyClass has its own value for i and v.

Access Control
Before we move on, I would like to discuss access control. There are three main types of access control in a class.
public: Any part of the program can access it
private: Only members of the class can access it
protected: Private except inherited classes can access it NOT COVERED

To change access control, just use the name followed by a colon, and that will be the access control from then on. The default access control is private. You can bypass this by using the struct keyword instead of class - the default access control is then public.

CODE
#include <vector>

class MyClass {
int i; //Default is private
public:
int integer; //Public
private:
vector v; //Private
protected:
vector vec; //Protected
};

struct MyClass2 {
int i; //Public, as default
private:
int i2; //Private
};


- A common mistake is to assume that struct has a deeper meaning. It doesn't. It's the exact same as using class and following it with "public:".
- To access a public member of a class, use ObjectName.MemberName. So, using the above example:
CODE
MyClass c;
c.integer = 10; //Value of integer is changed
c.i = 10; //Error: private member cannot be accessed


Constructors
Usually, we need to do something when a class is created. We also often need to have different ways to create objects of the same type. That is why we have constructors.

A constructor looks a bit like a function, with a few key differences. For one, it has no return value. Its name must be the same as the class name. For example:

CODE
#include <vector>

class MyClass {
public:
MyClass() {
//Constructor
i = 10;
v.push_back(i);
}
int i;
std::vector<int> v;
};


As you can see, you can do anything you want with your data members in the constructor. So now, when we create an object like the following, the operations in the default constructor are called. The default constructor is a constructor with no arguments, and it is called whenever an object of that type is created.
CODE
MyClass my;

Since my is initialized with the default constructor, i should now have a value of 10 and v should have one element with a value of 10.

Also, constructors can take values like a normal function.

CODE
#include <vector>

class MyClass {
public:
//Default constructor
MyClass() {
i = 10;
v.push_back(i);
}
//Constructor that takes an argument
MyClass(int i2) {
i = i2;
v.push_back(i);
}
int i;
std::vector<int> v;
};

//...

MyClass a; //Initializes with default constructor
MyClass b(); //Initializes with default constructor
MyClass c(4); //Initializes with second constructor


Another important concept is an initializer list. With the above method, your compiler automatically initializes all the data members to their default value, then executes the body of the constructor. This is normally not a big deal, but if you have big classes where initializing them takes a lot of resources, it can be important to do it only once. That is why initializer lists are provided. You can change the default initialization, with the following as an example.

CODE
#include <vector>

class MyClass {
public:
//Default constructor
MyClass() : i(10), v(7,2) { //Initialize i with a value of 10; v is initialized with 2 elements with a value of 7
v.push_back(i);
}
//Constructor that takes an argument
MyClass(int i2) : i(i2) { //Initialize i with the argument i2
v.push_back(i);
}
int i;
std::vector<int> v;
};


To create the initializer list, follow the argument list with a colon, then initialize each data member with whatever values. Multiple initializations are seperated by commas. When you use the initializer lists, you can ensure that the data members are initialized only once.

- If you do not provide a default constructor, your compiler will synthesize one for you. This constructor does nothing except initialize all the data members to their default values.
- If your default constructor is private, objects must be created with another constructor - if there are no public constructors, objects of that type cannot be created. Note that the synthesized constructor is public.

Member Functions
A member function is an operation that can be performed on an object. You can declare member functions in the same way as normal functions, except within the body of the class. Member functions can use data members and can call other member functions. They cannot call constructors, but constructors can call them.
You can use access control for member functions. Public functions can be performed as Object.Function(args). Private (or protected) member functions can only be called by other members.

CODE
#include <vector>

class MyClass {
public:
void setI(int i2) { i = i2; }
int getI() { return i; }
void multiplyBy6() { doubleI(); tripleI(); }
private:
void doubleI() { i *= 2; }
void tripleI() { i *= 3; }
int i;
};

//...

MyClass m;
m.setI(10);
int i = m.getI(); //i==10
m.multiplyBy6(); //i==60
m.doubleI(); //Error: can't access private member function


The body of a member function does not need to be defined inside the class. It can be defined outside, by declaring it inside and using the scope operator (double colon).

CODE
class MyClass {
public:
int getI();
int i;
};

int MyClass::getI() {
return i;
}


This operates the same as getI in the previous example, with one difference.

Inline Functions
An inline function is a function that is actually changed into the appropriate code by the compiler. With short functions, this can increase run-time efficiency. Member functions that are defined within a class are inline by default. Member functions defined outside the class and normal functions need the inline keyword.

CODE
inline int sum(int i, int i2) { //Inline function
return i1+i2;
}

class MyClass {
public:
int getI();
int setI(int i2) { i = i2; } //Inline by default
int i;
};

inline int MyClass::getI() { //Inline by keyword
return i;
}


- Note that calling a function inline is a request, not a guarantee. Functions that are expanded inline may actually be slower if they are large or if there are certain other conditions. It is up to the compiler to determine whether to expand a function inline or not. It is not a good idea to call all your functions inline; it should only be used on short, simple functions called many times.


That is a basic introduction to classes. Reply if you have questions, comments, etc.

This post has been edited by qwijibow: Feb 28 2007, 01:40 PM
Reason for edit: Fixed a few syntax errors
Go to the top of the page
 
+Quote Post
quinciest
post Feb 1 2007, 04:57 AM
Post #2


Member [ Level 1 ]
Group Icon

Group: Members
Posts: 41
Joined: 30-January 07
Member No.: 20,045


thanks for the tutorial
although i've read it in book
but i more understand read this one
Go to the top of the page
 
+Quote Post
qwijibow
post Feb 28 2007, 01:36 PM
Post #3


Way Out Of Control - You need a life :)
Group Icon

Group: Members
Posts: 1,366
Joined: 14-September 04
From: Nottingham England
Member No.: 570



And Dont forget to end the class with a semi colon ';'

class
{
};

wink.gif

Go to the top of the page
 
+Quote Post
iGuest
post Jan 30 2008, 01:15 PM
Post #4


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869


Thanks...
Very simple illustrations...!

-venkatraman.S
Go to the top of the page
 
+Quote Post
iGuest
post May 9 2008, 07:58 AM
Post #5


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869


Access private member function without using friend class
C++: Basic Classes

I want to use private member function in other class , how can I access without using friend.

-question by Aijaz Ahmad
Go to the top of the page
 
+Quote Post
Gr33nN1nj4
post Aug 11 2008, 06:02 AM
Post #6


Newbie [ Level 2 ]
Group Icon

Group: [HOSTED]
Posts: 20
Joined: 11-August 08
Member No.: 31,987


QUOTE(FeedBacker @ May 9 2008, 02:58 AM) [snapback]123200[/snapback]
Access private member function without using friend class

C++: Basic Classes
I want to use private member function in other class , how can I access without using friend.

-question by Aijaz Ahmad


You can't as that is the idea behind private functions/variables, think of them as globals but only for that class. What you could do(assuming you have access to the source) is create a public "proxy" function think simply passes the given variables to the private function. For private variables I would recommend implanting get/set functions.

example of a get/set
CODE
class MyClass
{
    public:
        MyClass() // :) never forget to initialize your values.. bad things will happen if you don't
        {
            number = 0;
        }

        virtual int get_number() // Returns the value of the private member number
        {
            return number;
        }

        virtual void set_number(int value) // Sets number to equal value
        {
            number = value;
        }

    private:
        int number;
};


This post has been edited by Gr33nN1nj4: Aug 11 2008, 06:05 AM
Go to the top of the page
 
+Quote Post
iGuest
post May 17 2009, 05:40 PM
Post #7


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869


Thanks u very much ^^. Your notes are very useful for me. I wish all Learn programming books had clear ideals like yours. You make me to love C++ so more!

-reply by Thang Doan Minh
Go to the top of the page
 
+Quote Post
iGuest
post Dec 11 2009, 12:28 PM
Post #8


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869


struct/class difference correction
C++: Basic Classes

A struct is not the "exact same" as a public class From C++ standard (11.2.2): "In absence of an access-specifier for a base class, public is assumed when the derived class is declared struct and private is assumed when the class is declared class." Additionally, (11.2): "Member of a class defined with the keyword class are private by default. Members of a class defined with the keywords struct or union are public by default." -reply by richard
Go to the top of the page
 
+Quote Post

Reply to this topicNew Topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   2 8ennett 152 25th February 2010 - 11:42 AM
Last post by: 8ennett
No New Posts   1 oval 1,696 21st February 2010 - 10:53 AM
Last post by: iG-James
No New Posts   2 kanade 729 28th January 2010 - 01:06 PM
Last post by: iG-pankaj
No New Posts   17 r3d 8,321 6th January 2010 - 03:29 PM
Last post by: iG-Steve
No New Posts   9 bridenhosen 2,393 29th December 2009 - 06:00 PM
Last post by: iG-miha
No New Posts   2 CaptainRon 2,872 18th December 2009 - 01:18 PM
Last post by: iG-Mike
No New Posts   7 ViRuaL 14,635 24th November 2009 - 08:16 AM
Last post by: iG-janu
No New Posts   12 ViRuaL 3,778 19th November 2009 - 04:29 AM
Last post by: iG-Sherri
No New Posts   0 starscream 167 8th November 2009 - 06:04 AM
Last post by: starscream
No New Posts   17 proxies 2,746 4th November 2009 - 11:29 PM
Last post by: HannahI
No New Posts 12 Propeng 3,489 3rd November 2009 - 09:55 PM
Last post by: HannahI
No New Posts   0 starscream 216 26th September 2009 - 07:09 AM
Last post by: starscream
No New Posts   8 solanky 7,931 23rd September 2009 - 03:59 AM
Last post by: iG-sherry
No New Posts 1 Ashraful 1,788 14th August 2009 - 09:26 AM
Last post by: surfermac
No New Posts   3 -stillkill- 1,388 21st July 2009 - 10:20 PM
Last post by: iG-css


Web Hosting Powered by ComputingHost.com.
HONESTY ROCKS! truth rules.
Creative Commons License