gcc 3.2.2에서 간단한 stl 예제 에러..

luvweb의 이미지

gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5) 와 gcc 2.95.3
두 버전에서 컴파일을 하는데..

gcc 3.2.2에선 에러가 나고 gcc 2.95.3에선 정상으로 컴팔됩니다.
정말 이상해서 아시는분 있으시면 답변줌 부탁드립니다.
(제가 알기로는 gcc3.2에서 stl에 정상적으로 되는걸로 알고있느뎀 ㅡㅜ)
테스트 코드는

#include <vector>

int main()
{
   // 각 숫자들을 1로 모두 세팅한다.
   const int sievesize = 100;
   vector<int> sieve(sievesize, 1);

   // 1로 세팅된 값들 각각에 대해 이 수의 배수들을 0으로 세팅한다.
   for (int i = 2; i * i < sievesize; i++)
      if (sieve[i])
         for (int j = i + i; j < sievesize; j += i)
            sieve[j] = 0;

   // 1로 세팅된 숫자들만 출력한다.
   for (int j = 2; j < sievesize; j++)
      if (sieve[j])
         cout << j << " ";
   cout << endl;
}

gcc 3.2.2에서의 에러는..

g++ t1.cxx 
t1.cxx: In function `int main()':
t1.cxx:7: `vector' undeclared (first use this function)
t1.cxx:7: (Each undeclared identifier is reported only once for each function 
   it appears in.)
t1.cxx:7: parse error before `>' token
t1.cxx:11: `sieve' undeclared (first use this function)
t1.cxx:18: `cout' undeclared (first use this function)
t1.cxx:19: `endl' undeclared (first use this function)

그럼 고수님들의 답변을 ^^

clhitter의 이미지

c++ standard library는 std라는 namesapce 에 정의되어 있습니다.

아마도 2.95.3에서 컴파일 되는 것은 하위 호환성 때문이라고 생각합니다.
지금 얼핏 찾아보니까 stl_config.h라는 헤더 파일에 gcc일 때는 __STL_NO_NAMESPACES가 #define 되어서 c++ standard library가 std namespace 안에 들어가지 않게 되어 있는 것 같은데 맞는지 모르겠군요 )

#include 한 다음이나
main 함수 처음부분에

using namespace std;

using stdvector;
using stdcout;
using stdendl;

라고 하시거나

vector<int> 대신 stdvector<int>
cout 대신 stdcout
endl 대신 stdendl

이라고 하시면 됩니다.

아 그리고 stdcout, stdendl는 iostream 헤더에 정의되어 있으므로

#include <iostream>
도 추가하셔야 겠네요

댓글 달기

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