Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以编写一次代码,然后如果我想再次运行相同的代码行,我可以添加另一行引用前一行?
例如:检查井字游戏中的胜利。
将重复的代码行放入一个单独的方法中,然后在需要检查胜利时简单地调用该方法。
这可能是这样的:
public boolean checkForWins() { // perform your checking here }
转弯完成后,您可以像这样引用此代码:
if (checkForWins()) { // what to do if there is a win }
听起来您想要一个静态方法,在每回合后调用它。