在您阅读我的问题之前,请知道我的英语不好
public Name()
{
ID = 1;
loadOptions();
}
private void loadOptions
{
// code
if (as[0].equals("ID"))
{
ID = Integer.parseInt(as[1]);
}
// more code
}
static
{
ID1 = ID;
}
ID1 是 0,但我希望它是Integer.parseInt(as[1]);
……请帮帮我!