| Author |
Hi, everyone ,i have a question with toUpperCase().
|
Javan Li
Ranch Hand
Joined: Jul 24, 2002
Posts: 84
|
|
for example: protected CustomizeRecItem get(String strTableName,String strColName) { return (CustomizeRecItem)mapRecItem_.get(strTableName.toUpperCase() + ":" + strColName.toUpperCase()); } If i change to below , is it any difference ?? protected CustomizeRecItem get(String strTableName,String strColName) { return (CustomizeRecItem)mapRecItem_.get((strTableName + ":" + strColName).toUpperCase()); }
|
 |
David Weitzman
Ranch Hand
Joined: Jul 27, 2001
Posts: 1365
|
|
|
Moving this to JIG
|
 |
David Weitzman
Ranch Hand
Joined: Jul 27, 2001
Posts: 1365
|
|
|
There's no difference.
|
 |
 |
|
|
subject: Hi, everyone ,i have a question with toUpperCase().
|
|
|