C++
  Home arrow C++ arrow Page 2 - The Mighty C++ Template
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
C++

The Mighty C++ Template
By: Mitchell Harper
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 43
    2001-11-23

    Table of Contents:
  • The Mighty C++ Template
  • Understanding function overloading
  • The template
  • The template (contd.)
  • A simple class template
  • A simple class template (contd.)
  • Instantiating the class
  • Behind the scenes
  • Conclusion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    The Mighty C++ Template - Understanding function overloading


    (Page 2 of 9 )

    To understand where templates have come from though, you must first understand function overloading. Let's say for an example, that we wanted to create a function that would work with numeric values and return the average of those values. The function should be able to accept integers, floats and doubles. To accomplish this, we could create three functions to handle each different type of numeric value:

    To work with integers:

    int GetAverage(int num1, int num2, int num3)

    {

    return static_cast<int>((num1 + num2 + num3) / 3);

    }


    To work with floating point values:

    float GetAverage(float num1, float num2, float num3)

    {

    return static_cast<float>((num1 + num2 + num3) / 3);

    }


    To work with double values:

    double GetAverage(double num1, double num2, double num3)

    {

    return static_cast<double>((num1 + num2 + num3) / 3);

    }


    Then, whenever we called the GetAverage() function from our program, the C++ compiler would decide which function it should call based on the types of the parameters passed to that function. If an un-handled type, such as long was passed to the function, then the compiler would automatically cast it to the type that it most closely resembled (In this case, long would be converted to int).

    As you can see, we end up with three functions that do exactly the same thing. This is bad, because it creates a lot of redundant code, and our executable file will be bigger than it needs to be.

    There has to be a better way... and there is... it's called a template.

    More C++ Articles
    More By Mitchell Harper


     

    C++ ARTICLES

    - More Tricks to Gain Speed in Programming Con...
    - Easy and Efficient Programming for Contests
    - Preparing For Programming Contests
    - Programming Contests: Why Bother?
    - Polymorphism in C++
    - Overview of Virtual Functions
    - Inheritance in C++
    - Extending the Basic Streams in C++
    - Using Stringstreams in C++
    - Custom Stream Manipulation in C++
    - General Stream Manipulation in C++
    - Serialize Your Class into Streams in C++
    - Advanced File Handling with Streams in C++
    - File Handling and Streams in C++
    - The STL String Class







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek