C++/디딤돌 C++

학생 클래스 (생성자) [디딤돌 C++]

언제나휴일 2016. 4. 14. 11:38
반응형

학생 클래스 (생성자) [디딤돌 C++]

언제나 휴일 티스토리


학생 클래스 (생성자) [디딤돌 C++]


학생 클래스 (생성자) [디딤돌 C++]

생성자.zip



Student.h

//Student.h

#pragma once

class Student

{

public:

    Student(void);//생성자

    ~Student(void);//소멸자

};

 

Student.cpp

//Student.cpp

#include "Student.h"

#include <iostream>

using namespace std;

 

Student::Student(void)

{

    cout<<"학생 개체 생성자"<<endl;

}

 

Student::~Student(void)

{

    cout<<"학생 개체 소멸자"<<endl;

}

 

program.cpp

//Program.cpp

#include "Student.h"

#include <iostream>

using namespace std;

int main()

{

    Student stu1;

    cout<<"Test1"<<endl;

    Student *stu2 = new Student(); //동적으로 개체 생성

    cout<<"Test2"<<endl;

    delete stu2; //동적으로 생성한 개체 소멸

    cout<<"Test3"<<endl;

    return 0;

}

 

* 디딤돌 C++  16. 생성자에서

돌 C++ 소개 가기

 

반응형