栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

C++中对象的定义与使用 三种方法及区别

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C++中对象的定义与使用 三种方法及区别

C++

文件 Employee.h

#include 
#include 
using namespace std;
class Employee {
public:
    int age;
    //C++ 字符串
    //1 字符数组  char name[20]; #include  strcpy函数
    //2 字符串  string  #include 

    string name;
    char address;
public:
    void sayHello();
};


Employee.cpp

#include 
#include 
#include "Employee.h"
using namespace std;

void Employee::sayHello() {
    cout << "I love you ,chaochao" << endl;
}

TestEmployee.cpp

#include "Employee.h"
#include 
#include 
using namespace std;
//第一种
int main() {
    Employee zhenglin;
    zhenglin.age = 19;
    zhenglin.name = "zhenglin";
    zhenglin.sayHello();
    return 0;
}
int main_01() {
    //第二种
    Employee *e1 = new Employee();
    Employee *e2;
    e2 = new Employee();
    e1->age = 20;
    e1->name = "yuxia";
    e1->sayHello();
    //第三种
    Employee emp;
    Employee *e3 = &emp;
    e3->age = 21;
    e3->name = "liyi";
    e2->sayHello();
    delete e1;
    return 0;
}


有new的都需要用delete清除内存

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/289598.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号