C++语言基础 例程 类和对象的简单应用举例

贺老师的教学链接  本课讲解

实例1:求出三角形的周长和面积

#include<iostream>
#include<Cmath>
#include<cstdlib>
using namespace std;
class Triangle
{
public:
    void setABC(double x, double y, double z);//置三边的值,注意要能成三角形
    double perimeter();//计算三角形的周长
    double area();//计算并返回三角形的面积
private:
    double a,b,c; //三边为私有成员数据
};
int main()
{
    Triangle tri1;    //定义三角形类的一个实例(对象)
    double x, y, z;
    cin>>x>>y>>z;
    tri1.setABC(x, y, z);    //为三边置初值
    cout<<"三角形的周长为:"<< tri1.perimeter()<<",面积为:"<< tri1.area()<<endl;
    return 0;
}

//在下面定义Triangle类中的各个成员函数
void Triangle::setABC(double x, double y, double z)
{
    if(x+y>z&&x+z>y&&y+z>x)
    {
        a=x;
        b=y;
        c=z;
    }
    else
    {
        cout<<"不能构成三角形"<<endl;
        exit(0);
    }
}

double Triangle::perimeter()
{
    return a+b+c;
}

double Triangle::area()
{
    double p=(a+b+c)/2;
    return sqrt(p*(p-a)*(p-b)*(p-c));
}

实例2:学生信息及成绩处理

#include<iostream>
#include<cstring>
using namespace std;
class Stu
{
private:
    int no; //学生学号
    char name[20];    //学生姓名
    double score[3];  //课程成绩
public:
    double average( );//计算平均成绩
    double sum( );    //计算总分
    void show( );    //打印信息
    void setStudent(int, char*);//输入学生学号、姓名
    void inputScore();
};
double Stu::average( )
{
    return sum()/3;
}//平均成绩

double Stu::sum( )
{
    return score[0]+score[1]+score[2];
}        //总分
void Stu::show( )    //打印信息
{    cout<<"No.: "<<no<<", Name: "<<name<<endl;
    cout<<"Score: "<<score[0]<<", "<<score[1]<<", "<<score[2]<<endl;
    cout<<"average: "<<average()<<'\t'<<"Sum: "<<sum()<<endl<<endl;
}
void Stu::setStudent(int n, char *nam)
{
    no = n;  //置学号
    strcpy(name,nam);    //置姓名
}

void Stu::inputScore()
{
    int i;
    cout<<"please input score of "<<name<<": ";
    for(i=0;i<3;i++)
        cin>>score[i];
}

int main( )
{
    Stu s1,*p2;
    s1.setStudent(30, "Li qing");
    s1.inputScore();
    s1.show();

    p2 = new Stu;
    p2->setStudent(28, "Wang Gang"); //对象置初值
    p2->inputScore();
    p2->show();
    return 0;
}
时间: 2024-09-30 16:26:15

C++语言基础 例程 类和对象的简单应用举例的相关文章

C++语言基础 例程 类的声明和对象的定义

贺老师的教学链接  本课讲解 类的声明和对象的定义-形式1 #include <iostream> #include <cstring> using namespace std; class Student { private: int num; char name[20]; char sex; public: void set_data(int n, char *p,char s) { num=n; strcpy(name,p); sex=s; } void display( )

C++语言基础 例程 类声明和成员函数定义的分离

贺老师的教学链接  本课讲解 1.一个程序,一个源文件的做法 #include<iostream> #include<cstring> using namespace std; class Student { private: char Name[20]; //学生姓名 double Chinese; //语文成绩 double Math; //数学成绩 public: double Average( );//计算平均成绩 double Sum( ); //计算总分 void Sh

C++语言基础 例程 类模板

贺老师的教学链接  本课讲解 类模板的使用--参数化类 #include <iostream> using namespace std; template<class numtype> class Compare { public: Compare(numtype a,numtype b) { x=a; y=b; } numtype max( ) { return (x>y)?x:y; } numtype min( ) { return (x<y)?x:y; } pri

C++语言基础 例程 类的成员函数

贺老师的教学链接  本课讲解 分清"你我" #include <iostream> using namespace std; class Time { public: void set_time(int,int,int); void show_time(); private: int hour; int minute; int sec; }; int main( ) { Time t1,t2; t1.set_time(12,45,32); t2.set_time(21,32

php基础知识:类与对象(5) static_php技巧

Declaring class members or methods as static makes them accessible without needing an instantiation of the class. A member declared as static can not be accessed with an instantiated class object (though a static method can).  声明静态的类变量和方法可以不需要实例化类对象的

C++语言基础 例程 静态成员

贺老师的教学链接  本课讲解 问题的提出现状:n个同类的对象,每一个对象都分别有自己的数据成员,各自有值,互不相干.期望:希望有某一个或几个数据成员为某类所有对象所共有,以实现数据共享.方案:用全局变量 #include<iostream> using namespace std; int N = 0; class Class { private: int a; public: Class(){N++;a=0;} void add(){N++;} }; int main( ) { Class

C++语言基础 例程 基类与派生类的转换

贺老师的教学链接  本课讲解 指向基类对象的指针变量也可以指向派生类对象 #include <iostream> #include <string> using namespace std; class Student//声明Student类 { public: Student(int, string,float); void display( ); private: int num; string name; float score; }; Student::Student(in

C++语言基础 例程 派生类的构造函数和析构函数

贺老师的教学链接  本课讲解 一个简单派生类的定义 #include <iostream> #include<cstring> using namespace std; class Student //声明基类Student { public: Student(int n,string nam,char s):num(n),name(nam),sex(s) {} //基类构造函数 ~Student( ) { } //基类析构函数 void show( ) { cout<<

C++语言基础 例程 对象成员的引用

贺老师的教学链接  本课讲解 通过对象名和成员运算符访问对象中的成员 #include <iostream> using namespace std; class Time { public: void set_time( ); void show_time( ); private: int hour; int minute; int sec; }; int main( ) { Time t1; t1.set_time( ); t1.show_time( ); Time t2; t2.set_