(linux/g++)redefinition에러가 발생합니다

ekejaqutmqk의 이미지

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
전체 코드는 이곳에서 볼 수 있습니다.

본인의 이미지

다른 프로젝트를 하고 나서 다시 컴파일 하니까 됩니다..
메모리 참조 비슷한 현상 때문인거 같네요..
헤더에선 정의를 한 적이 없는데 정의 했다고 컴파일러가 잘못 인식 했으니..

익명 사용자의 이미지

이거 이상하군요.

제가 C++ 선언 규칙을 잘못 알고 있었던 건지 한참 찾아보던 중이었습니다.
무슨 문제 때문이었는지 정말 궁금하네요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.