public class Test { public String f00(String x) { String y = x; return y; } public String f01(String z) { String w = z + "abc"; return w; } }