liuzhengyuan 发表于 2020-5-8 16:16:20

004 - 类和对象(class & object)③ 类成员函数(Class Function)

本帖最后由 liuzhengyuan 于 2020-5-8 17:09 编辑

待更新{:10_332:}
C++ 自学心得 |004 - 类和对象(class & object)③ 类成员函数(Class Function)
上一篇: 003 - 类和对象(class & object)② 构造函数(Constructor Functions)


类的成员函数是指那些把定义和原型写在类定义内部的函数,就像类定义中的其他变量一样。类成员函数是类的一个成员,它可以操作类的任意对象,可以访问对象中的所有成员。

P.S.:这个应该不算特别难(直接上代码)

如果想统计一个学生的成绩并输出,可以这样↓
#include<bits/stdc++.h>
using namespace std;

class Exam {
        public:
                string student_name;
                int score;
               
                Exam(string aname, int ascore)
                {
                        student_name = aname;
                        score = ascore;
                }
};

int main()
{
        Exam first("A", 98);
       
        cout << first.student_name << "考了" << first.score << "分";
}
效果:
A考了98分



可以使用类成员函数来判断 A 同学是否及格:
#include<bits/stdc++.h>
using namespace std;

class Exam {
        public:
                string student_name;
                int score;
               
                Exam(string aname, int ascore)
                {
                        student_name = aname;
                        score = ascore;
                }
               
                bool ispass()
                {
                        if (score >= 60)
                        {
                                return true;
                        }
                        return false;
                }
};

int main()
{
        Exam first("A", 98);
       
        cout << first.ispass();
}
效果:
1


下一篇:???
页: [1]
查看完整版本: 004 - 类和对象(class & object)③ 类成员函数(Class Function)