«lvalue» 태그된 질문


9
a +++++ b가 작동하지 않는 이유는 무엇입니까?
int main () { int a = 5,b = 2; printf("%d",a+++++b); return 0; } 이 코드는 다음 오류를 제공합니다. 오류 : 증가 피연산자로 lvalue 필요 하지만 전반에 걸쳐 공간을 세우면 a++ +하고 ++b다음 잘 작동합니다. int main () { int a = 5,b = 2; printf("%d",a++ + ++b); return 0; …
89 c  lvalue 


2
왜 열거 형 변수가 rvalue입니까?
예: typedef enum Color { RED, GREEN, BLUE } Color; void func(unsigned int& num) { num++; } int main() { Color clr = RED; func(clr); return 0; } 이것을 컴파일 할 때 다음과 같은 오류가 발생합니다. <source>: In function 'int main()': <source>:16:9: error: cannot bind non-const lvalue reference of type …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.