multiple definition 에러에 대한 질문

sculd2의 이미지

안녕하세요.
아래와 같은 내용의 헤더파일 하나를 작성했습니다.

#ifndef SOMEHEADER_H
#define SOMEHEADER_H
#include

using namespace std;

double variableName;

#endif

저는 #ifndef ... #endif를 이용했기 때문에 중복정의가 일어날 일은 없다고 생각하고 있었는데, 다른 파일에서 이것을 include한 다음에 컴파일을 해보면 variableName에 대해서 중복된 정의 에러가 납니다. 제 지식이 부족하여 왜 multiple definition에러가 나는지 이해가 되지 않습니다. 이 부분에 대해서 설명해 주실 분 계신가요?

그리고 제가 원하는 것은, 이 헤더를 include한 파일에서 variableName의 값을 바꾸면 이 파일을 include한 다른 파일에서도 바뀐 값으로 나타나도록 하고 싶습니다. 변수를 static으로 선언하면 에러가 안 나기는 하는데, 한 파일에서 variableName의 값을 바꿔도 다른 파일에서 variableName의 값을 접근하면 바뀐 값으로 보이지 않습니다. 이 부분은 어떻게 구현을 하면 좋을 지 조언 부탁드립니다.

sculd2의 이미지

아...
시간 좀 지나고 한 숨 돌리고 보니 좀 당연한 질문을 했네요^^

혹시 궁금하신 분들을 위해 자답을 올리자면, 저런 헤더파일이던 소스 파일이건 변수가 선언되면 global로 처리되기 때문에, 저 헤더파일을 include한 소스파일을 컴파일한 오브젝트 파일들을 링크하려고 하면 같은 이름의 global변수가 여러 번 나오는 것으로 되어 중복정의 에러가 나옵니다.

twinwings의 이미지

좀 더 상세히 달아보면 헤더파일에 변수를 선언했을 경우

1) 상수인 경우
- internal linkage를 가짐(const int가 static const int와 동일한 의미를 가짐)
- 각기 다른 곳에서 include 할 때 변수의 주소를 출력해보면 다르게 출력됨을 알 수 있음

2) 상수가 아닌 경우
- external linkage를 가짐
- 각기 다른 곳에서 incldue 할 때 변수의 주소를 출력해보면 동일 해야만 함.
- 따라서 헤더파일에는 변수의 선언만 해야함.
정의를 해버린다면, include 할 때 마다 하나의 변수이름 대응되는 주소가 추가되버림.

example_header.h

#ifndef __EXAMPLE_HEADER_H_
#define __EXAMPLE_HEADER_H_
 
const double PI = 3.141592;
extern int   n;
 
#endif

example_header.cpp

#include "example_header.h"
 
int          n = 0;
static int   m = 0;

이런 식으로 용도 구분해서 사용해야 겠죠.

익명 사용자의 이미지

$ cat foo.h
const int foo = 1;
$ cat bar.c
#include "foo.h"
$ cat fred.c
#include "foo.h"
int main(void) { }
$ gcc bar.c fred.c
/tmp/cc6onADr.o:(.rodata+0x0): multiple definition of `foo'
/tmp/cc5wCZhX.o:(.rodata+0x0): first defined here
collect2: error: ld returned 1 exit status
익명 사용자의 이미지

C랑 C++랑 다른 부분중 하나죠

twinwings의 이미지

C에서 C++의 const 도입했다고 알고있는데 미묘하게 차이가 있었군요.

그런데 엄청 오래전 글이었군요...- -;

익명 사용자의 이미지

global로 등록되는거였군요!

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.