Why can't I use a property that begins with a single lower-case letter
Most likely, it's because your property is not defined correctly.
property | getter | setter | comment |
---|---|---|---|
AString | getAString | setAString | Surprise! This is not a property named aString as you expected.. |
aString | getaString | setaString | Notice the lower case letter after get/set? That's the key. |
string | getString | setString |
posted on 2008-07-23 00:21 MingIsMe 閱讀(60) 評論(0) 編輯 收藏 所屬分類: iBatis學習