java无法从静态上下文中引用非静态,非静态方法无法从静态上下文中引用

First some code:

import java.util.*;

//...

class TicTacToe

{

//...

public static void main (String[]arg)

{

Random Random = new Random() ;

toerunner () ; // this leads to a path of

// methods that eventualy gets us to the rest of the code

}

//...

public void CompTurn (int type, boolean debug)

{

//...

boolean done = true ;

int a = 0 ;

while (!done)

{

a = Random.nextInt(10) ;

if (debug) { int i = 0 ; while (i<20) { System.out.print (a+", ") ; i++; }}

if (possibles[a]==1) done = true ;

}

this.board[a] = 2 ;

}

//...

} //to close the class

Here is the error message:

TicTacToe.java:85: non-static method nextInt(int) cannot be referenced from a static context

a = Random.nextInt(10) ;

^

What exactly went wrong? What does that error message "non static method cannot be referenced from a static context" mean?

解决方案

You are calling nextInt statically by using Random.nextInt.

Instead, create a variable, Random r = new Random(); and then call r.nextInt(10).

It would be definitely worth while to check out:

Update:

You really should replace this line,

Random Random = new Random();

with something like this,

Random r = new Random();

If you use variable names as class names you'll run into a boat load of problems. Also as a Java convention, use lowercase names for variables. That might help avoid some confusion.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值