Welcome Guest ( Log In | Register )



 
Reply to this topicStart new 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) *
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

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Basic Tutorial: PHP GD(16)
  2. Visual Basic Help(7)
  3. Sharing Files In Windows Xp Home(15)
  4. VB6-MS Access Question(8)
  5. VB.NET / MS Access Question(6)
  6. VB.NET: MS-Access Interaction Tutorial (Part I)(18)
  7. VB.NET & MS Access Issue(3)
  8. Firefox 2(4)
  9. Programming In Glut (lesson 4)(7)
  10. Phpbb - Installation Tutorial ( For Newbies Based On Astahost Cpane)l(5)
  11. Cracking Wireless Access Point Password?(22)
  12. Html Basic Tutorial(9)
  13. Domain Name Is Not Assigned To Ip. Access Cpanel With Ip Not With Domain Name.(6)
  14. Basic Css(6)
  15. Simple Java Question(3)
  1. Main Trap17 Site Is Down?(0)
  2. Accessing Ms Access Database From A Centralized Location?(5)
  3. Database Access On Remote Server W/jsp(0)
  4. Access Denied As Admin On Xp, Services Troubles(4)
  5. How To: Display A Members/user List.(3)
  6. Ssh Access ?(2)
  7. An Absolute Basic Guide To Algorithms For Dummies(0)
  8. Php: Lesson #3;functions(0)
  9. Basic Html Tutorial(1)
  10. Linux Partitioning Guide (new Users)(1)
  11. Credit System - Transfer Credits Between Members?(1)
  12. Cpanel Error When Loggin In...(5)
  13. String Library Functions(4)


 



- Lo-Fi Version Time is now: 12th October 2008 - 06:08 AM