overloading two class member functions : member method « Class « C++ Tutorial

Home
C++ Tutorial
1.Language Basics
2.Data Types
3.Operators statements
4.Array
5.Development
6.Exceptions
7.Function
8.Structure
9.Class
10.Operator Overloading
11.Pointer
12.File Stream
13.template
14.STL Introduction
15.string
16.vector
17.list
18.bitset
19.set multiset
20.valarray
21.queue stack
22.deque
23.map multimap
24.STL Algorithms Modifying sequence operations
25.STL Algorithms Non modifying sequence operations
26.STL Algorithms Binary search
27.STL Algorithms Sorting
28.STL Algorithms Merge
29.STL Algorithms Min Max
30.STL Algorithms Iterator
31.STL Algorithms Heap
32.STL Algorithms Helper
C / ANSI-C
C Tutorial
C++
Visual C++ .NET
C++ Tutorial » Class » member method 
9.4.8.overloading two class member functions
#include <iostream>
#include <math.h>
#include <string>
using namespace std;

const double DEG_TO_RAD=0.0174532925;
  
class trigonometric {
 double angle;
 double answer_sine;
 double answer_cosine;
 double answer_tangent;

public:
 void trig_calc(double);
 void trig_calc(char *);
};

void trigonometric::trig_calc(double degrees)
{
 angle=degrees;
 answer_sine=sin(angle * DEG_TO_RAD);
 answer_cosine=cos(angle * DEG_TO_RAD);
 answer_tangent=tan(angle * DEG_TO_RAD);
 cout << "\nFor an angle of " << angle << " degrees." << endl;
 cout << "The sine is " << answer_sine << endl;
 cout << "The cosine is " << answer_cosine << endl;
 cout << "The tangent is " << answer_tangent << endl;
}
  
void trigonometric::trig_calc(char *dat)
{
 char *deg,*min,*sec;

 deg=strtok(dat,"d ");  
 min=strtok(0,"m ");
 sec=strtok(0,"s");
 angle=atof(deg)+((atof(min))/60.0)+((atof(sec))/360.0);
 answer_sine=sin(angle * DEG_TO_RAD);
 answer_cosine=cos(angle * DEG_TO_RAD);
 answer_tangent=tan(angle * DEG_TO_RAD);
 cout << "\nFor an angle of " << angle << " degrees." << endl;
 cout << "The sine is " << answer_sine << endl;
 cout << "The cosine is " << answer_cosine << endl;
 cout << "The tangent is " << answer_tangent << endl;
}

main()
{
 trigonometric data;

 data.trig_calc(75.0);
  
 char str1[] "35d 75m 20s";
 data.trig_calc(str1);
 
 data.trig_calc(145.72);

 char str2[] "65d 45m 30s";
 data.trig_calc(str2);
 
 return (0);
}
9.4.member method
9.4.1.Declare a class with method
9.4.2.Implement class member function
9.4.3.The class member access operators . and ->
9.4.4.Overloading class member functions
9.4.5.Default values in member functions
9.4.6.Use class as the member function parameter type
9.4.7.member function overloading.
9.4.8.overloading two class member functions
9.4.9.overloading functions in base and derived classes
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.