C++) 이런식으로 함수의 리턴값을 사용할수 있나요?

Loa@Google의 이미지

다른분이 하시던 프로젝트를 봤는데, 예를들어,

int func1(int a1)
{
return a1 + 9;
}
 
Do_something(&func1(9))

이런식으로 짜시더라구요, 근데 제 환경에서는 컴파일 오류가 납니다. 혹시 컴파일하는 환경차이일까요? 아니면 아예 그분이 잘못 써놓으신걸까요?
Anti-Lock의 이미지

잘못 옮겨 적으셨거나... 러스트 아니었을까요?
아니면 int 같은 기본 타입이 아니라 어떤 클래스였을 수도?

익명 사용자의 이미지

C++ 코드가 맞다면...

1. 호출된 함수의 반환 타입이 lvalue reference type 혹은 rvalue reference to function type

이 경우 함수 호출 결과는 lvalue가 되고, unary & 연산자의 결과는 반환값에 대한 주소가 됩니다.

2. 호출된 함수의 반환 타입이 class 혹은 enueration type이고, unary & 연산자가 적절히 overloading 되어서 이걸 받아줌

그러면 당연히 그 operator function이 호출되겠죠.

======

1에 해당하는 경우는 생각보다 쉽게 상상할 수 있습니다. 뭐 예컨대

static void get_value(int *p){ if (p) *p = 42; }
 
static int &get_singleton(){
	static int singleton;
	return singleton;
}
 
int main(){
	get_value(&get_singleton());
 
	return 0;
}

2는 솔직히 정말 특이한 경우가 아니면 별로 추천할 만한 스타일은 아니겠습니다.

#include <iostream>
 
class C{
public:
	void operator &() && {
		std::cout << "I am a hard-core C++ nerd!\n";
	}
};
 
C return_C() { return C(); }
 
int main(){
	&return_C(); // surprise!
 
	return 0;
}

뭐 보시다시피 C++의 연산자 오버로딩은 생각보다 강력하고 유연한 기능입니다만, 그렇다고 이런 짓을 해도 된다는 의미는 아니죠.

보통 프로그래머들은 오버로딩 된 연산자들이 그래도 대충 built-in 연산자와 비슷한 의미론을 가지고 있을 거라고 기대하기 마련이니까요.

댓글 달기

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