Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

117
votes
3answers
2k views

Return type of '?:' (ternary conditional operator)

Why does the first return a reference? int x = 1; int y = 2; (x > y ? x : y) = 100; While the second does not? int x = 1; long y = 2; (x > y ? x : y) = 100; Actually, the second did not ...
50
votes
3answers
806 views

C++: is return value a L-value?

Consider this code: struct foo { int a; }; foo q() { foo f; f.a =4; return f;} int main() { foo i; i.a = 5; q() = i; } No compiler complains about it, even Clang. Why q() = ... line is ...
20
votes
3answers
509 views

Why pre-increment operator gives rvalue in C?

In C++, pre-increment operator gives lvalue because incremented object itself is returned, not a copy. But in C, it gives rvalue. Why?
16
votes
5answers
487 views

Is a member of an rvalue structure an rvalue or lvalue?

A function call returning a structure is an rvalue expression, but what about its members? This piece of code works well with my g++ compiler, but gcc gives a error saying "lvalue required as left ...
15
votes
3answers
1k views

PODs, non-PODs, rvalue and lvalues

Could anyone explain the details in terms of rvalues, lvalues, PODs, and non-PODs the reason why the first expression marked below is not ok while the second expression marked below is ok? In my ...
13
votes
2answers
2k views

C++0x rvalue references - lvalues-rvalue binding

This is a follow-on question to http://stackoverflow.com/questions/2748866/c0x-rvalue-references-and-temporaries In the previous question, I asked how this code should work: void f(const ...
13
votes
2answers
3k views

Why are C++0x rvalue reference not the default?

One of the cool new features of the upcoming C++ standard, C++0x, are "rvalue references." An rvalue reference is similar to an lvalue (normal) reference, except that it can be bound to a temporary ...
12
votes
3answers
201 views

printing a member of a returned struct

I'm having trouble printing a member of a struct that is returned from a function: #include <stdio.h> struct hex_string { char a[9]; }; struct hex_string to_hex_string_(unsigned x) { ...
12
votes
10answers
623 views

Why doesn't a+++++b work in C?

int main () { int a = 5,b = 2; printf("%d",a+++++b); return 0; } This code gives : error: lvalue required as increment operand But if I put spaces throughout a++ + and ++b, then it ...
9
votes
2answers
307 views

C++0x const RValue reference as function parameter

I am trying to understand why someone would write a function that takes a const rvalue reference. In the code example below what purpose is the const rvalue reference function (returning "3"). And ...
9
votes
3answers
2k views

lvalue and rvalue

Just wonder if a literal string is a lvalue or a rvalue. Are other literals (like for int, float, char etc) lvalue or rvalue? Is the return value of a function a lvalue or rvalue? How do you tell ...
8
votes
1answer
260 views

Classes, Rvalues and Rvalue References

An lvalue is a value bound to a definitive region of memory whereas an rvalue is an expression value whose existence is temporary and who does not necessarily refer to a definitive region of memory. ...
8
votes
2answers
519 views

C++0x: rvalue reference versus non-const lvalue

When programming in C++03, we can't pass an unnamed temporary T() to a function void foo(T&);. The usual solution is to give the temporary a name, and then pass it like: T v; foo(v); Now, ...
8
votes
4answers
1k views

What are the uses of lvalue subroutines in Perl?

I don't understand what could be the uses of lvalue subroutines? What is it that I can't accomplish with normal subroutines? Could you please post some examples? Thanks
7
votes
2answers
136 views

What language coined the term lvalue? [closed]

Was C the first programming language to use the term lvalue, or does it go further back? Note that I'm not talking about the general concept of "something on the left-hand side of an assignment ...
7
votes
6answers
142 views

Why myClassObj++++ doesn't incur a compile error : '++' needs l-value just as buildin type do?

Why myint++++ compiles fine with VS2008 compiler and gcc 3.42 compiler ?? I was expecting compiler say need lvalue, example see below. struct MyInt { MyInt(int i):m_i(i){} MyInt& ...
7
votes
1answer
406 views

Where in the C++ Standard does it say ::delete can change lvalues?

I ran into my first compiler that changes the lvalue passed to ::delete, but doesn't zero out the lvalue. That is the following is true: Foo * p = new Foo(); Foo * q = p; assert(p != 0); assert(p ...
7
votes
4answers
341 views

Reference initialization in C++

Can anybody explain to me why there is a difference between these two statements? class A{}; const A& a = A(); // correct A& b = A(); // wrong It says invalid ...
6
votes
5answers
1k views

Binding temporary to a lvalue reference

I have the following code string three() { return "three"; } void mutate(string& ref) { } int main() { mutate(three()); return 0; } You can see I am passing three() to mutate ...
5
votes
6answers
497 views

Why is taking the address of a temporary illegal?

I know that the code written below is illegal void doSomething(std::string *s){} int main() { doSomething(&std::string("Hello World")); return 0; } The reason is that we are not ...
5
votes
1answer
149 views

Problem by a reference variable of a template parameter

The following small example shows my problem: template<class T> struct X { static void xxx(T& x) { } static void xxx(T&& x) { } }; int main(int argc, char** argv) { int ...
5
votes
3answers
4k views

Does “LValue” not mean what I think it means?

In the following code: _imageView.hasHorizontalScroller = YES; _imageView.hasVerticalScroller = YES; _imageView.autohidesScrollers = YES; NSLog(@"scrollbar? H %p V %p hide %p", ...
4
votes
2answers
166 views

One VS2010 bug ? Allowing binding non-const reference to rvalue WITHOUT EVEN a warning?

string foo() { return "hello"; } int main() { //below should be illegal for binding a non-const (lvalue) reference to a rvalue string& tem = foo(); //below should be the correct ...
4
votes
3answers
166 views

Is a dereferenced pointer a valid lvalue?

Assuming the definition: int i = 10; int *p = &i; Why is *p a valid lvalue here: *p+=10; Shouldn't *p evaluate to the value of the int stored at &i, ie. 10, and hence generate a "Not ...
3
votes
5answers
113 views

Will an lvalue to rvalue conversion happen?

C++ Standard (4/5) the lvalue-to-rvalue conversion is not done on the operand of the unary & operator. For example: int x; int *p = &x; In the above case, are p are &x both ...
3
votes
4answers
131 views

Why can't I take the address of a return value?

I've split some code into two files, it was working before. In one file I have a function which has an out value parameter which is a pointer to a pointer. I'm filling this parameter with a call to ...
3
votes
7answers
194 views

Casting a pointer does not produce an lvalue. Why?

After posting one of my most controversial answers here, I dare to ask a few questions and eventually fill some gaps in my knowledge. Why isn't an expression of the kind ((type_t *) x) considered a ...
3
votes
1answer
75 views

Why creating an lvalue is one of the benefits of returning a reference in C++?

I am reading some C++ text at the address: https://cs.senecac.on.ca/~chris.szalwinski/archives/oop244.071/content/custo_p.html. In the section RETURNING A REFERENCE, the author wrote: " Returning a ...
3
votes
3answers
180 views

Intitialzing an array in a C++ class and modifiable lvalue problem

I have a basic C++ class .The header looks like this: #pragma once class DataContainer { public: DataContainer(void); ~DataContainer(void); int* getAgeGroup(void); int ...
3
votes
4answers
336 views

lvalue required as increment operand error

#include <iostream> using std::cout; int main() { int i = 10; cout << ++(-i); <-- Error Here return 0; } What is wrong with ++(-i)? Please clarify.
3
votes
2answers
207 views

Correlation between specifier and qualifier?

const and volatile are called cv-qualifier by the C spec. What is exactly defference between specifier and qualifier (cv-qualifier)? Does a qualifier is a specifier as well? Is it necessarry that ...
3
votes
5answers
196 views

Rvalues in C++03

How can you tell whether or not a given parameter is an rvalue in C++03? I'm writing some very generic code and am in need of taking a reference if possible, or constructing a new object otherwise. ...
2
votes
3answers
137 views

“lvalue required as left operand of assignment” in odd place--C++

NOTE: This is NOT a duplicate of the billion and one questions with this name in the title. This has to do with pointers and very odd stuff, not an accidental = instead of ==. I have a C++ function ...
2
votes
5answers
184 views

What's the deal with temporary objects and references?

One can frequently read that you cannot bind normal lvalue reference to temporary object. Because of that one can frequently see methods of class A taking const A& as a parameter when they don't ...
2
votes
1answer
200 views

Regarding lvalue-to-rvalue conversion, when is it required?

I've been reading quite many on the Internet and it seems that many people mentioned the following rules (but i couldn't find it in the standard), The addition operator + (and all other binary ...
2
votes
1answer
138 views

gcc confused about what's an lvalue?

gcc is giving me invalid lvalue in assignment errors for: -2[(size_t *)new] = 0; Changing the code to the following makes it go away: ((size_t *)new)[-2] = 0; but as far as I can tell, both are ...
2
votes
5answers
518 views

lvalue required

what does the error message "Lvalue required" actually mean?
2
votes
2answers
240 views

Array and Rvalue

$4.2/1 - "An lvalue or rvalue of type “array ofN T” or “array of unknown bound of T” can be converted to an rvalue of type “pointer to T.” The result is a pointer to the first element of ...
2
votes
2answers
158 views

How can I make this function act like an l-value?

Why can't I use the function ColPeekHeight() as an l-value? class View { public: int ColPeekHeight(){ return _colPeekFaceUpHeight; } void ColPeekHeight( int i ) { ...
2
votes
3answers
434 views

l-value substr method in C++

I want to create a substr method in C++ in a string class that I made. The string class is based on C-style string of course, and I take care of the memory management. I want to write a ...
2
votes
2answers
395 views

binding lvalue to a reference

I think I am missing smth back in my theoretical background on this thing. I know there were similar posts but I still do not get it. I have such a code: void somefunc1(Word &Key) { ...
1
vote
1answer
24 views

Lvalue awareness in ANTLR grammar and syntax predicates

I am implementing a parser with ANTLR for D. This language is based on C so there are some ambiguity around the declarations and the expressions. Consider this: a* b = c; // This is a declaration of ...
1
vote
3answers
62 views

typecasting and reference in c++

Please look at the following call and the corresponding function, long pagenumber = 0; Node *newNode = createNode(); bufMgr->writePage(pageNumber,(char*)newNode); and writePage is declared as ...
1
vote
5answers
79 views

l-value query in C

I had confusion about the -l value and r-value. consider the code int x; x=5; with int x memory space is reserved for int variable. then, value 5 is assigned to it. my question is the ...
1
vote
2answers
58 views

Objective-C struct property pointer cannot be made via self.prop?

I've just encountered a little surprise whilst writing NSCoder support into a class. I have a class A which contains an exposed 'color' property of an rgb struct type. I have another class B which ...
1
vote
6answers
116 views

why return value of function can be assigned to?

Consider the following function: char *f() { char *s=malloc(8); } main() { printf("%c",*f()='A'); } If I comment the line char *s=malloc(8); I get an error as if the assignment *f()='A' ...
1
vote
4answers
194 views

C: Pointer confusion

I understand this is part of the basic stuff, but i am stuck :-( Can someone please help me? Program 1: #include <stdio.h> #include <stdlib.h> int main() { int a=1,b=2,c; c=(a+b)++; ...
1
vote
3answers
621 views

lvalue required as left operand of assignment

Why am I getting lvalue required as left operand of assignment with a single string comparison? How can I fix this in C? if (strcmp("hello", "hello") = 0) Thanks!
1
vote
3answers
70 views

Would these C-pointer operations cause problems?

Let's say I've got that: char *p = NULL; I'm sure this one would be a problem as I'd be dereferencing a NULL pointer: *p = 16; On the other hand, I think this one would be OK for I'd be getting ...
1
vote
3answers
246 views

How do I get this simple C test program for loading modules to work?

I was going to use dlopen, and dlsym on linux to make these two source files work: #include <dlfcn.h> #include <stdio.h> int main() { int *(func)(void); func=dlsym( ...

1 2