Skip to main content

Classes & Objects: Dynamic Memory Allocation

Just as variables of pre-def data type are dynamically allocated, same way objects of class can also be dynamically allocated. While the method of doing this is no different but the way members of such objects are accessed is a bit different. This is why I thought of writing a separate article on it.

Before discussing any further, look at the program below:

  // Example Program in C++
  #include<iostream.h>

  // class
  class myclass
  {
   // by default everything is
   // private to the class
   int var1, var2;
   void add();

   public:
   int sum;

   void input(int,int);
  };

  // function definitions
  void myclass::input(int a, int b)
  {
   var1=a;
   var2=b;
   add();
  }

  void myclass::add()
  {
   sum=var1+var2; 
  }

  // main function starts
  void main(void)
  {
   myclass obj; // simple object

   myclass *pobj; // pointer
   // of type 'myclass'

   pobj=&obj; // now 'pobj' pointer
   // points to the object 'obj' of
   // class 'myclass'

   // members are accessed by the '.'
   // operator 
   obj.input(10,20);
   cout<<obj.sum;
   cout<<endl;

   // in case of pointers of class,
   // members are accessed by the
   // '->' arrow operator
   pobj->input(30,40);
   cout<<pobj->sum;
   cout<<endl;
  }

Did you notice the difference?

Members of the object of the class as you know are accessed like this:

object.membername;

While, in case of pointers of the class, the members are accessed like this:

objectptr->membername;

This is the difference I wanted to show you!

As in case of dynamic memory allocation, we have to declare pointer of the class, therefore members of the dynamically allocated objects will be accessed by the (->) arrow operator.

Arrays and pointers are closely related. While the members of the pointers of objects are accessed by the (->) operator, in case of arrays of objects, we have to use ‘.’ operator instead.

The example program below will clear the confusion, if any:

  // Example Program in C++
  #include<stdio.h>
  #include<iostream.h>
  #include<process.h>

  class employee
  {
   private:
   char name[30];
   int emp_no,age;
   float salary, net_salary, tax;
   void calculate();

   public:
   void input();
   void output();
  };

  //----FUNCTION DEFINITION STARTS----
  void employee::input()
  {
   printf("Enter Name: ");
   gets(name);
   printf("Enter Employee Number: ");
   cin>>emp_no;
   printf("Enter Age: ");
   cin>>age;
   printf("Enter Salary: ");
   cin>>salary;
   printf("Enter Tax Paid: ");
   cin>>tax;
   printf("\n\n");

   calculate();
  }

  void employee::output()
  {
   printf("Name: %s\n", name);
   printf("Age: %d\n", age);
   printf("Employee Number: %d\n", emp_no);
   printf("Net Salary: %f\n", net_salary);
   printf("\n\n");
  }

  void employee::calculate()
  {
   net_salary=salary-tax;
  }
  //----FUNCTION DEFINTION ENDS----

  // main function starts
   void main(void)
   {
   employee *emp_obj;
   int num_emp;

   printf("Enter Number of Employees: ");
   cin>>num_emp;

   emp_obj=new employee[num_emp];
   // terminate if memory allocation
   // failed
   if(emp_obj==NULL) exit(1);

   // take input
   for(int i=0;i<num_emp;i++)
     // object are accessed as arrays
     // so '.' operator is used
     // we can also write
     // (emp_obj+i)->input(); to do the
     // same thing
     emp_obj[i].input();

   printf("\n\n EMPLOYEE DETAILS\n");

   // give output
   for(i=0;i<num_emp;i++)
     emp_obj[i].output();
  }

As in the comments, we can either use

   emp_obj[i].input();
   or
   (emp_obj+i)->input();

to do the same thing, in the first case the object is referenced as an array while in the other case, it is referenced as pointer. So the appropriate operator is used in each case.

Hope this article helps!

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Pong Game in HTML & JavaScript (Updated)

HTML Pong Game Gameplay Pong is one of the first games that many people from the 80s or 90s had played as children. Lots of people know it as a simple arcade game but what they probably do not know is that this simple game helped establish the video game industry! In this post, we'll be making our version of a very simple but fully working Pong game in HTML, CSS and JavaScript. Basic Game Structure Games, however simple or complex they may be, follow the basic Game Loop design as shown in the chart below. Event-oriented game engines usually encapsulate the design and provide you with an event mechanism for handling various parts like the input, update, and rendering but internally the basic design is being followed. Pong Game Loop For our Game Loop, we'll be using JavaScript setInterval so that the game code remains asynchronous and separate. As you may have guessed a while (or any other loop) will freeze the page. For our input, we'll be using onmousemove event to update t