私は小さな .h ファイルを持っています:
#include "stdafx.h"
#ifndef BIGNUM_H
#define BIGNUM_H
#include <vector>
class bignum{
private:
std::vector<int> num;
num.resize(4);
};
#endif
次のエラー メッセージが表示されます。
- 除外された型指定子
- この宣言にはストレージ クラスまたは型指定子がありません
私は何が欠けていますか?