我正在开发基于文本的RPG游戏。我有一个字符串和整数我在私有虚空下更改(游戏在NetBeans中)并且需要从虚空中获取新更改的变量,因此它可以更改位置(另一个类,由整数和字符串组成) ):
// Check connection
if ( mysqli_connect_errno() ) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
我还计划根据用户的选择更换位置。有什么想法吗?
答案 0 :(得分:1)
您的两个变量scene
和number
都是public
,因此您可以直接调用它。如果您将public
更改为private
,则可以使用getters methods
和setters methods
获取实际值并修改变量。
这是我的主张:
private String scene;
private int number;
public String getScene(){ return scene;} //getter method for the variable scene
public int getNumber(){ return number;} // getter method for the variable number
public void setScene(String str){ this.scene = str;} // setter method for the variable scene
public void setNumber(int n){ this.number = n;} // setter method for the variable scene
最重要的是,你应该看看Java中的OO设计。