RedHat linux 8.0 에서 프로그램할때 문제입니다.
ifstream 과 ofstream 을 이용하기 위해 다음과 같이 코딩을 했습니다. 분명히 fstream 이란 해더파일을 포함시켰음에도 불구하고 ifstream 과 ofstream 이 뭔지 모르겠다고 컴파일 시에 그러는군요.
여러가지 삽질을 해보다가 정 안되서 이렇게 글을 올립니다.
[/code]
#include<fstream>
#include<iostream>
class List;
class Graph;
class ListNode
{
private:
friend class List;
int node;
ListNode* link;
public:
ListNode(int x)
{node=x; link=0;};
};
class List
{
private:
friend class Graph;
ListNode* last;
public:
List(){last=0;};
void Insert(const int x)
{
if(last == 0)
{
last = new ListNode(x);
}
else
{
last->link = new ListNode(x);
last = last->link;
}
};
};
class Graph
{
private:
List *HeadNodes;
int n;
public:
Graph(const int vertices = 0):n(vertices)
{HeadNodes = new List[n];};
void InitFromFile(char* fileName);
};
void Graph:: InitFromFile(char* fileName)
{
cout<<"hehe";
ifstream fin(fileName);
char temp[10];
int nodeNum;
int linkNum;
while(fin.eof()==0)
{
fin>>temp;
nodeNum=atoi(temp);
fin>>temp;
linkNum=atoi(temp);
HeadNodes[nodeNum].Insert(linkNum);
}
fin.close();
}
int main()
{return 1;}
c++ 네임스페이스
아마도 네임 스페이스를 지정하지 않아서 그런 거 같습니다.
gcc가 3.x대로 올라가면서 c++의 기본 스펙에 충실해진 거 같더군요.
include 문 아래에
using namespace std;
를 추가하고 다시 컴파일 해 보세요.
어찌나 졸린지..~~
답변 고맙습니다. ^^ 그런데 한가지 더 질문해도 될까요.
위와 같은 문장을 넣어봤더니 오브잭트 파일로 컴파일이 성공적으로 되더군요.
그런대 실행파일을 만들려면 Graph::InitFromFIle 함수에서 undefined reference 어쩌고 하면서 에러가 떠오르네요.
위와같은 코드로 전에 옛날버전의 컴파일러로 컴파일을 했을때는 문제가 없었던것 같은데요 최근에 나온 컴파일러라 그런지 문법이 좀 달라진건가요?
atoi를 위한 헤더파일을 포함하지 않았네요..cstdlib를 inc
atoi를 위한 헤더파일을 포함하지 않았네요..
cstdlib를 include해보세요
댓글 달기