Suppose I have
class Student { String name; int age; String teacher; }
Then :
public class App1 { public static voi
You can put a empty String
String teacher = "";
Or optimized one :)
String teacher = StringUtils.EMPTY;