Output out=new Output(res); 对象的时候提示错误。
- /创建操作共享数据类
- class Res
- {
- String name;
- String sex;
- }
- //创建多线程操作 信息写入类
- class Input implements Runnable
- {
- Res res;
- public Input(Res res)
- {
- this.res=res;
- }
- public void run()
- { boolean faig=true;
- while(true)
- {
- if(faig)
- {
- this.res.name="man";
- this.res.sex="man";
- faig=false;
- }
- else
- {
- this.res.name="中文";
- this.res.sex="中文";
- faig=true;
- }
- }
- }
- //创建多线程操作 信息读取类
- class Output implements Runnable
- {
- Res res;
- public Output(Res res)
- {
- this.res=res;
- }
- public void run()
- {
- System.out.print(this.res.name+" "+this.res.sex);
- }
- }
- }
- class Tongxun {
- public static void main(String[] args) {
- Res res=new Res();
- Input in=new Input(res);
- Output out=new Output(res); //这里提示错误了,帮忙解决下
- }
- }
复制代码 |
|