++ 과 --에 대해서 질문있어요.

toy의 이미지

++은 변수의 뒤에 쓰였을때는
변수의 값이 계산에 쓰이고 그 후에 값이 증가한다고 하는데요..
그 후 라는게 정확히 어떤 뜻인지 알고싶습니다.

그후라는것이 그냥 a++후인지 아니면 세미콜론으로 끝나는 한문장의 끝인지 모르겠습니다.

r = a++ + b * (c +a ) ;
위와 같은경우 a값이 증가하는것이 c+a한것에 영향을 줄수있다는것인지
아니면 ; 로 끝난 다음 문장부터나 영향을 줄수있는지요.. :oops:

chadr의 이미지

r = a++ + b * (c +a ) ;

1. (c +a )
2. 1.* b
3. a
4. 3. + 2.
5. a + 1
6. r = 4.

순서를 표기하자면 이렇게 되겠군요..

-------------------------------------------------------------------------------
It's better to appear stupid and ask question than to be silent and remain stupid.

lsj0713의 이미지

(c + a) 쪽의 a에 대한 참조가 먼저 처리될 수도 있고 a++의 증가가 먼저 이루어질 수도 있습니다. 다만 보장된 것은 ;이 나오기 전에 증가가 이루어진다는 것 뿐. 그래서 같은 변수가 한 수식에서 두번 이상 변경되거나, 변경과 참조가 같이 되는 경우는 피해야 합니다.

b = a + (a = 3);

물어보신 수식이나 이런게 바로 변경과 참조가 같이 되는 경우입니다.

세벌의 이미지

toy wrote:
r = a++ + b * (c +a ) ;
위와 같은경우 a값이 증가하는것이 c+a한것에 영향을 줄수있다는것인지
아니면 ; 로 끝난 다음 문장부터나 영향을 줄수있는지요.. :oops:

컴파일러에 따라 전자의 경우도 후자의 경우도 될 수 있습니다. 따라서 이런 코드는 권장하지 않습니다.
Fe.head의 이미지

함수로 만든다면..

전위 ++ (예 ++a)

int Pre_plusplus(int &a)
{
    *a = *a + 1;
    return *a;
}

후위 ++ (예 a++)

int Post_plusplus(int &a)
{
     int tmp = *a;
     *a = *a + 1;
     return tmp; 
}

와 같습니다..

위의 것으로 coding 한다면..

int a = 1;
printf("a++ : %d\n", a++);      // 1이출력
a=1;
printf("a++ : %d\n", Pre_plusplus(&a)); // 1이 출력

a = 1;
printf("++a : %d\n", ++a);     // 2가 출력
a = 1;
printf("a++ : %d\n", Post_plusplus(&a)); // 2이 출력

근데.. 이해하기가 더 힘드나요?

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

댓글 달기

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