源代码运行单个java,且不能带包名
/* * This is a orion editor sample. */ public class PomitTest { public static void main(String[] args) { String str = "string test upper case"; String strUpper = str.toUpperCase(); System.out.println("src: " + str); System.out.println("upper: " + strUpper); } }
运行代码
运行结果: