01: package test; 02: 03: public class ReadUseReturn { 04: 05: public String test() { 06: String s = ""; 07: 08: return s; 09: } 10: 11: }