| | |
Summary: 3/24/2011
© Kenneth C. Louden 2003 1
Chapter 3::
Names, Scopes, and Bindings
Programming Language Pragmatics
Michael L. Scott
Copyright © 2009 Elsevier
We have seen various bindings:We have seen various bindings:
Ruby: type bound to variable during
execution
C++ (inheritance) Variable bound to type
at run time
C++(non virtual) variable bound to type
at compile time
C++ parameter variable bound to spacep p
at run time
Java integer bound to max length at
language definition time
2
3/24/2011
|