Get variable in other classes

后端 未结 4 2006
旧时难觅i
旧时难觅i 2020-11-30 15:14

I need to get variable inString in other class. How can I do this?

public class main {
    public static StringBuffer inString;


    public sta         


        
4条回答
  •  青春惊慌失措
    2020-11-30 15:37

    You can get to it by: main.inString where main is the name of the class where public static variable is declared.

提交回复
热议问题