C++ 9일차 C++ 9일차 정적멤버 https://www.youtube.com/watch?v=SJx5czHKSy8&index=63&list=PLlJhQXcLQBJqywc5dweQ75GBRubzPxhAk https://www.youtube.com/watch?v=ZoK_VFoycas&list=PLlJhQXcLQBJqywc5dweQ75GBRubzPxhAk&index=64 요건 두들낙서 님의 정적 멤버에 관한 동영상입니다. 정적멤버에 대해 어떻게 설명할지를 몰라 대신 동영상을 올립니다. 더보기 C++ 8일차 C++ 8일차 생성자의 다양한 사용 방법 1234567891011121314151617181920212223242526272829303132333435363738#include #include using namespace std; class comple{public: comple() : real(0),img(0) {} comple(double a, double b) : real(a),img(b){} double GetReal() { return real; } void SetReal(double real_) { real = real_; } double GetImg() { return img; } void SetImg(double img_) { img = img_; } void print() { cout 더보기 C++7일차 C++7일차 객체의 생성과 소멸 123456789101112131415161718192021222324252627#include using namespace std; class test {public: test() { //생성자 cout 더보기 이전 1 ··· 11 12 13 14 15 16 17 18 다음