码迷,mamicode.com
首页 > 编程语言 > 详细

C++-声明类的变量指针和函数指针

时间:2020-05-16 00:25:25      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:pac   student   stream   include   ios   构造   span   delete   name   

使用void(Student::*pwho) void = & Student::who // 构造函数指针

使用string Student::*p_name = & Student::m_name //构造变量指针

#include <iostream>
#include <cstdio>

using namespace std; 


class Student{
public:
    Student(const string& name):m_name(name){} 
    void who(void){
        cout << "学生的名字是" << m_name << endl; 
    }
    string m_name; 
}; 

int main() {
    //成员函数指针
    void(Student::*pwho)(void) = &Student::who; 
    //成员变量指针
    string Student::*p_name = &Student::m_name; 
    Student s("小明"); 
    //成员变量指针的调用 
    cout << s.*p_name << endl;
    //成员函数指针的调用
    (s.*pwho)(); // 用来定义指针变量
    Student* ps = new Student("小红"); 
     
    (ps->*pwho)(); 

    delete ps; 
    ps = NULL; 
}

 

C++-声明类的变量指针和函数指针

标签:pac   student   stream   include   ios   构造   span   delete   name   

原文地址:https://www.cnblogs.com/hyq-lst/p/12897924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!