(linux/g++)redefinition에러가 발생합니다
글쓴이: ekejaqutmqk / 작성시간: 목, 2019/11/14 - 12:37오후
choijongin@choijongin-VirtualBox:~/OSS$ g++ JOS.cpp Desktop.cpp Box.cpp JOS.cpp: In function ‘bool SetValidPos(int*, int*)’: JOS.cpp:100:6: error: redefinition of ‘bool SetValidPos(int*, int*)’ bool SetValidPos(int * _x, int * _y) ^~~~~~~~~~~ JOS.h:20:6: note: ‘bool SetValidPos(int*, int*)’ previously defined here extern bool SetValidPos(int * _x, int * _y); ^~~~~~~~~~~ JOS.cpp: In function ‘void Draw(int, int, const char*)’: JOS.cpp:116:6: error: redefinition of ‘void Draw(int, int, const char*)’ void Draw(int _x, int _y, const char * _c) ^~~~ JOS.h:36:6: note: ‘void Draw(int, int, const char*)’ previously defined here JOS.cpp: In function ‘void Draw(int, int, char*)’: JOS.cpp:123:6: error: redefinition of ‘void Draw(int, int, char*)’ void Draw(int _x, int _y, char * _c) ^~~~ JOS.h:43:6: note: ‘void Draw(int, int, char*)’ previously defined here JOS.cpp: In function ‘void Draw(int, int, char)’: JOS.cpp:130:6: error: redefinition of ‘void Draw(int, int, char)’ void Draw(int _x, int _y, char _c) ^~~~ JOS.h:50:6: note: ‘void Draw(int, int, char)’ previously defined here JOS.cpp: In function ‘int Kbhit()’: JOS.cpp:140:5: error: redefinition of ‘int Kbhit()’ int Kbhit(void) ^~~~~ JOS.h:60:5: note: ‘int Kbhit()’ previously defined here
//////////////////JOS.h//////////////////////////////////
#pragma once #include <iostream> #include <string.h> #include <cstring> #include <termios.h> #include <unistd.h> #include <fcntl.h> #define SIZEX 144 // 최상위 윈도우 사이즈 #define SIZEY 36 // 최상위 윈도우 사이즈 using namespace std; extern char g_backBuffer[SIZEY+1][SIZEX+1][4]; // 후면버퍼 //화면 밖을 벗어나는 좌표가 들어오면 값을 화면 안으로 수정하고 거짓을 반환 extern bool SetValidPos(int * _x, int * _y); // 화면에 특정 문자를 특정 위치에 출력, 조만간 텍셀이라는 구조체를 만들 예정 extern void Draw(int _x, int _y, const char * _c); extern void Draw(int _x, int _y, char * _c); extern void Draw(int _x, int _y, char _c); // 키보드 버퍼가 비어있지 않으면 1을 반환 extern int Kbhit(void); // 윈도우 있는 Kbhit 함수를 쓸수 없어서 구글에서 검색해서 사용함 출처 >> <a href="https://corsa.tistory.com/18" rel="nofollow">https://corsa.tistory.com/18</a> [CORSA] extern void Gotoxy(int x, int y);
헤더에선 분명 선언만 하고 정의를 하지 않았고 거기다 익스턴 까지 썻는데
왜 헤더에서 정의가 되어있다고 에러가 나나요
순환참조가 일어 날거 같아 함수들은 전부 cpp에서 정의하고 싶습니다 ㅜㅜ
https://github.com/Choi-Jongin/ERICA_JOS
전체 코드는 이곳에서 볼 수 있습니다.
Forums:
해결
다른 프로젝트를 하고 나서 다시 컴파일 하니까 됩니다..
메모리 참조 비슷한 현상 때문인거 같네요..
헤더에선 정의를 한 적이 없는데 정의 했다고 컴파일러가 잘못 인식 했으니..
이거 이상하군요.
이거 이상하군요.
제가 C++ 선언 규칙을 잘못 알고 있었던 건지 한참 찾아보던 중이었습니다.
무슨 문제 때문이었는지 정말 궁금하네요.
댓글 달기