zoukankan      html  css  js  c++  java
  • C++ struct

     c中定义结构体变量需要加上struct关键字,c++不需要。

    c中的结构体只能定义成员变量,不能定义成员函数。c++即可以定义成员变量,也可以定义成员函数。

    //1. 结构体中即可以定义成员变量,也可以定义成员函数
    struct Student{
        string mName;
        int mAge;
        void setName(string name){ mName = name; }
        void setAge(int age){ mAge = age; }
        void showStudent(){
            cout << "Name:" << mName << " Age:" << mAge << endl;
        }
    };
    
    //2. c++中定义结构体变量不需要加struct关键字
    void test01(){
        Student student;
        student.setName("John");
        student.setAge(20);
        student.showStudent();
    }
  • 相关阅读:
    HZOJ 太阳神
    HZOJ Silhouette
    HZOJ Dash Speed
    HZOJ 巨神兵
    值得纪念的cspsAFO总结
    11月FLAG
    模板易错总结
    树 总结
    DP总结(优化等)
    代码低级错误总结
  • 原文地址:https://www.cnblogs.com/mmc9527/p/10429424.html
Copyright © 2011-2022 走看看