home *** CD-ROM | disk | FTP | other *** search
- /*
- tenchar.prg
-
- Demonstrates the Clipper anomaly with ten-character instance
- and class variable names. See description in manual -
- 'The 9-character variable name limitation'.
- */
-
- procedure main
- local tc := TenChar():new // class defined at bottom of this file
-
- tc:aTenCharNa := 42
- tc:aTenCharNm := 69 // overwrites the first assignment!
-
- // the second one will print NIL, since all
- // ten characters are significant for reads
- ? tc:aTenCharNm
- ? tc:aTenCharNa
-
- // but we can set the variable using only nine characters
- tc:aTenCharN := 42 // censorship
-
- // again, the second one will print
- // NIL; the first will print 42.
- ? tc:aTenCharNm
- ? tc:aTenCharNa
-
- // we can't access either variable with only nine
- // characters - so this will generate an error.
- ? tc:aTenCharN
- return
-
-
- #include "class(y).ch"
-
-
- create class TenChar
- export:
- var aTenCharNm
- var aTenCharNa
- endclass
-
-
- // eof tenchar.prg
-