| Author |
Help me put this into a method..
|
mike bones
Greenhorn
Joined: Mar 24, 2007
Posts: 4
|
|
Hello. I'm a new java programmer trying to convert this prog into a method. What the prog does is converts a string to uppercase. Code: public class CaseChange { public static void main (String[] args) { String TestString = new String("Test String"); TestString = TestString.toUpperCase(); System.out.println("UPPER CASE " + TestString); } } Can anyone help me convert this into a method? So that I can call it in the main? Any help would be great. =]
|
 |
pete stein
Bartender
Joined: Feb 23, 2007
Posts: 1561
|
|
I'm not exactly sure what you want as I think that there are several ways to do what I think you desire. using static methods: or using classes: ps: please learn about code tags so that your code is more readable.
|
 |
 |
|
|
subject: Help me put this into a method..
|
|
|