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

コンストラクタ

Cプログラマのための C++入門 > 2.クラスの概念 > コンストラクタ C++ #include <stdio.h> #include "Student.h"void PrintStudent(Student x) { printf("%s\n", x.Name()); printf(" 英語 = %d\n", x.English()); printf(" 数学 = %d\n", x.Mathematics()); printf("</stdio.h>…