std::string의 출력은..?

toold의 이미지

아래 드렸던 질문과 연관되는건데..
우선 답변 주신 맹고이님께 감사드리고요..
자꾸 말꼬리 잡는것 같아서 질문 새로 올립니다..^^

class Element{
public:
	std::string lastName;
	std::string firstName;
};

void main()
{
	Element a;

	a.firstName = "sss";
	a.lastName = "ttt";
	cout << a.firstName;
}

위와 같이 하면 에러가 나는데요..
a.firstName의 값을 출력하려면 어케해야 할까요..?...
맹고이의 이미지

#include <iostream>
#include <string> 

class Element { 
        public: 
                std::string lastName; 
                std::string firstName; 
}; 

int main() { 
        Element a; 

        a.lastName = "foo"; 
        a.firstName = "bar"; 

        std::cout << a.lastName << a.firstName << endl;
}

iostream.h를 include안하신게 아닌지... =3=33

그리고 이왕이면 예전글에 답변글로 달아주는게 좋을 것 같습니다.

mastercho의 이미지

string 앞에 std 네임 스페이스를 붙인걸로 보아

using namespace std;를 안해준걸로 보입니다

따라서 cout앞에도 std::cout를 해줘야합니다

endl 도 마찬가지죠

승자는 자기보다 우월한 사람을 보면 존경심을 갖고 그로부터 배울 점을 찾지만 패자는 자기보다 우월한 사람을 만나면 질투심을 갖고 어디 구멍난 곳이 없는지 찾는다.
- 하비스

맹고이의 이미지

mastercho wrote:
endl 도 마찬가지죠

아 그런가요... ^^;

근데 안붙여도 컴파일러가 아무말을 안하네요;;

[myunggoni@kimjung myunggoni]$ cat test.cpp
#include <iostream>
#include <string>

class Element {
        public:
                std::string lastName;
                std::string firstName;
};

int main() {
        Element a;

        a.lastName = "foo";
        a.firstName = "bar";

        std::cout << a.lastName << a.firstName << endl;
}
[myunggoni@kimjung myunggoni]$ g++ -Wall test.cpp
[myunggoni@kimjung myunggoni]$ ./a.out
foobar
[myunggoni@kimjung myunggoni]$
winner의 이미지

2.96(Redhat) 에서는 namespace 가 취약한 모양이더군요.

3.2.2 에서는 namespace 제대로 해줘야 하던데...

맹고이의 이미지

[myunggoni@kimjung myunggoni]$ g++ -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-113)

음... 2.96(Red Hat) 이네요. -_-;

아, 그리고 3.2(HP-UX)에서 테스트하니깐 에러로 나오네요.

<madang/STD/gon1982>3% g++ test.cpp
test.cpp: In function `int main()':
test.cpp:16: `endl' undeclared (first use this function)
test.cpp:16: (Each undeclared identifier is reported only once for each
   function it appears in.)
<madang/STD/gon1982>4% g++ -v
Reading specs from /usr/local/lib/gcc-lib/hppa2.0n-hp-hpux11.00/3.2/specs
Configured with: ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure  : (reconfigured) ./configure
Thread model: posix
gcc version 3.2
<madang/STD/gon1982>5%
mastercho의 이미지

2.96 gcc는 쓸게 못됩니다 -_-;

버그도 많고 라이브러리도 상당히 취약하더군요

승자는 자기보다 우월한 사람을 보면 존경심을 갖고 그로부터 배울 점을 찾지만 패자는 자기보다 우월한 사람을 만나면 질투심을 갖고 어디 구멍난 곳이 없는지 찾는다.
- 하비스

댓글 달기

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