| |||||||||||
| |||||||||||
What is an lvalue? (Perl, C)
An lvalue is an expression that you can write on the left hand side of an assignment statement - in other words an expression that defines a specific memory address of a variable.
The most common lvalues are simple variables or array / list / hash / dictionary members ... for example $hello = "Hello World";val = 15;There are some surprises until you think about it. In Perl you can write $lhs[$n+4] = 17; but not $lhs+4 = 17;. Yet in C, if vvv is a pointer to an array you can write vvv+4 = 15; quite happily - altering the fifth element of the array. You'll find the term lvalue come up most usually for the programmer in a compiler error message - "invalid lvalue" you will be told. What the compiler really means is that the twit who wrote the code is trying to save a value into an expression that doesn't actually define the memory address of a variable. (written 2008-03-18 18:48:27) Associated topics are indexed under C212 - C and C based languages - Memory ManagementP301 - Variables in Perl
Some other Articles
Well House Consultants / Manor - StaffUsing Structs and Unions together effectively in C Businesses in West Wiltshire - networking Ruby, C, Java and more - getting out of loops What is an lvalue? (Perl, C) Congratulations, Martin and Marta Rome, and the faith of Rome Please don't shout at me! Spring and early summer training courses Making PHP and MySQL training relevant to the course delegates 1689 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34 at 50 posts per pageThis is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price. Link to Ezine home page (for reading). Link to Blogging home page (to add comments). |
| ||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho | |||||||||||