私はC++を学習しています。私は私のC++クラスを別々のファイルに分割して実装することを練習しています。実装ファイルとヘッダファイルはStudent_Impl.cppとStudent_Header.hです。そして、ドライバファイルStudent_register.cppがあり、3つのStudentオブジェクトが作成されます。しかし、私はそれを構築しようとすると、それは学生が名前空間またはクラスではないというエラーを投げています。 Student_Header.h(Studentクラス宣言があるところ)を、実装ファイルStudent_Impl.cppとドライバファイルStudent_register.cppに含めましたが、それでも同じエラーがスローされます。考えられる原因は何か?私は、Visual Studioを使用しています2015年実装ファイルがC++ヘッダーファイルからクラス名を識別できません
Student_Header.h
#pragma once
#include <string>
using namespace std;
class Student {
private:
string fname;
string lname;
string address;
string city;
string phone;
int age;
public:
Student();
Student(string, string, string, string, string, int);
~Student();
string get_fname();
string get_lname();
string get_address();
string get_city();
string get_phone();
int get_age();
};
Student_Impl.cpp
#include "Student_Header.h"
#include "iostream"
#include "stdafx.h"
#include <string>
using namespace std;
Student::Student()
{
}
Student::Student(string fname1, string lname1, string address1, string city1, string phone1, int age1)
{
fname = fname1;
lname = lname1;
address = address1;
city = city1;
phone = phone1;
age = age1;
}
string Student::get_fname()
{
return fname;
}
string Student::get_lname()
{
return lname;
}
string Student::get_address()
{
return address;
}
string Student::get_city()
{
return city;
}
string Student::get_phone()
{
return phone;
}
int Student::get_age()
{
return age;
}
Student::~Student()
{}
Student_register.cpp
#include "stdafx.h"
#include "Student_Header.h"
#include <string>
#include "iostream"
using namespace std;
int main()
{
Student Student1("Mike", "J", "MikeAdd", "MikeCity", "MikePhone", 26);
Student Student2("Jack", "R", "JackAdd", "JackCity", "JackPhone", 25);
Student Student3("Roney", "M", "RoneyAdd", "RoneyCity", "RoneyPhone", 27);
// code for data retrieval
return 0;
}
正しいヘッダーファイルが含まれていますか? 異なる名前の複数のファイルが異なるフォルダにある場合、コンパイラは間違ったファイルを選択する可能性があります。 実際に使用されているファイルを確認するには、実装ファイルの1つに[Includeを表示]オプションを有効にします。このオプションは、ファイルプロパティIIRCの "C++" - "Advanced"セクションにありました。 –
@MarvinSielenkemperはい、Student_Header.hは正しいヘッダーファイルです。その名前の唯一のファイルです。 – VickyRoch
"Student_Impl.cpp"にローカルヘッダーファイル_after_ "stdafx.h"を含める必要があります。このファイルは、VSのプリコンパイル済みヘッダーメカニズムの一部であり、特別な注意が必要です。 –