임시객체는 const아닌가요?

vani2의 이미지

Test foo(Test& t) {
 
	printf("foo함수 호출됨\n");
	return t;
}
 
void main(void) {
 
 
	Test& a = Test();
 
	//foo(t);
	foo(Test());
 
}

vs2013에서 돌렸으며 위 코드들이 아무문제 없이 잘 돌아가네요.

임시객체라면 Rvalue일텐데 Lvalue 레퍼런스에 대입이되며, const가 없어도되네요..?

어찌된 일인가요?

vani2의 이미지

추가-

const라면 const 레퍼런스 타입이 참조하게 해야하는데 non-const타입에 대입했더니 잘만되는군요..

winner의 이미지

제 MBA 의 Clang 은 compile 오류를 냅니다.
질문 올리신 source 를 따라해보니 한가지 확실히 알겠군요.
표준을 정확히 알기 위해 시험할 때에는 Visual C++ 를 써서는 안된다. ^_^

Apache 의 호환성 시험결과를 보시기 바랍니다.
http://wiki.apache.org/stdcxx/C%2B%2B0xCompilerSupport

여기서 Visual C++ 의 version 11 이 Visual C++ 2012 입니다.
아직 2013 은 없군요.

vani2의 이미지

그렇군요.

VC만 이런건가요..

좋은 정보 감사드립니다.

꼼꼼히 읽어봐야겠습니다.

qiiiiiiiip의 이미지

gcc를 쓰시기를 추천드립니다만, 꼭vs를 쓰셔야겠다면 할 수 없지요..

어떤 컴파일러든, warning level은 최대로 해서 컴파일하세요.

C:\>copy a.cpp con
class Test
{
};
 
void foo( Test& a )
{
}
 
int main( int argc, char* argv[] )
{
    Test a;
    foo(a);
    foo(Test());
    return 0;
}
        1개 파일이 복사되었습니다.
 
C:\>cl.exe a.cpp
Microsoft (R) 32비트 C/C++ 최적화 컴파일러 버전 16.00.40219.01(80x86)
Copyright (c) Microsoft Corporation. 모든 권리 보유.
 
a.cpp
Microsoft (R) Incremental Linker Version 10.00.40219.01
Copyright (C) Microsoft Corporation.  All rights reserved.
 
/out:a.exe
a.obj
 
C:\>cl.exe /Wall a.cpp
Microsoft (R) 32비트 C/C++ 최적화 컴파일러 버전 16.00.40219.01(80x86)
Copyright (c) Microsoft Corporation. 모든 권리 보유.
 
a.cpp
a.cpp(5) : warning C4100: 'a' : 참조되지 않은 정식 매개 변수입니다.
a.cpp(13) : warning C4239: 비표준 확장이 사용됨 : '인수' : 'Test'에서 'Test &'()로의 변환입니다.
        비const 참조는 lvalue에만 바인딩할 수 있습니다.
a.cpp(9) : warning C4100: 'argv' : 참조되지 않은 정식 매개 변수입니다.
a.cpp(9) : warning C4100: 'argc' : 참조되지 않은 정식 매개 변수입니다.
Microsoft (R) Incremental Linker Version 10.00.40219.01
Copyright (C) Microsoft Corporation.  All rights reserved.
 
/out:a.exe
a.obj
 
C:\>
winner의 이미지

기존의 VC 용 source 를 위한 호환성 문제로 compile 되도록 남겨둔거군요.
좋은 정보 감사합니다.

gilgil의 이미지

저번에도 그러셨던 거 같은데
최소한 남들 컴퓨터에서 컴파일이 될 수 있도록 코드를 올리세요.

vani2의 이미지

죄송합니다 또 깜빡하고 올리지 않았군요.

조언감사합니다.

댓글 달기

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