In other post, I came across
(5.2.9/8) An rvalue of type "pointer to member of D of type cv1 T" can be converted to an rvalue of type "pointer to member of B of type cv2 T", where B is a base class (clause 10) of D,
Note this from language standard. so my question,
int i = 0;
int *p = &i;
*p = 1;
Is pointer an lvalue in all the cases? When does it is treated as rvalue?
&iis an expression of typeint*, and is thusly an example of a pointer being treated as an rvalue. You're asking taking the result of the expression&iand using it as the rvalue to the assignment operator, withint *pas the lvalue of said operator. – matthias Dec 9 '11 at 19:28