我不想在开始不变后确定最后变量。 如果变量不是final
,而是这种变数打败了这个目的。
我能做些什么?
public static final String ASDF = null;
{
ASDF = "asdf";
}
My situation:
public static JSONArray CATEGORIES = null;
{
String str = "";
str += """ + FIRST_CATEGORY + """;
try {
CATEGORIES = new JSONArray("[" + str + "]");
} catch (JSONException e) {
e.printStackTrace();
}
};