2010-08-04から1日間の記事一覧

this ポインタ

Cプログラマのための C++入門 > 2.クラスの概念 > this ポインタ C++ #include <stdio.h>struct student { public: char name[20]; int eng; int math; private: int ave; public: void calc_ave(); int average(); };void student::calc_ave() { this->ave = (this-></stdio.h>…