1 package test;2 3 public class ReadUseReturn {4 5 public String test() {6 String s = "";7 8 return s;9 }10 11 }12