totalPriceView = findViewById(R.id.total_price); for (commodity2 product : commodities) { totalPrice += commodity2.getprice() * commodity.getNo(); } totalPriceView.setText("$" + totalPrice); } 这段代码中的getprice()我在commodity中定义了方法,但是他的报错要求我用静态的方法是为什么
时间: 2024-02-20 22:59:42 浏览: 58
在这段代码中,您正在使用静态方法`commodity2.getprice()`来获取商品的价格,而不是使用实例方法。这可能是因为您没有实例化`commodity2`类的对象,或者您正在从静态上下文中调用该方法(例如,从静态方法或类中调用它)。
如果您想使用实例方法,您需要实例化`commodity2`类的对象,例如:
```
commodity2 product = new commodity2();
totalPrice += product.getprice() * commodity.getNo();
```
如果您想继续使用静态方法,请确保该方法也被声明为静态方法,并且您从静态上下文中调用它。
相关问题
detailInfo = findViewById(R.id.detail_info); detailSurplus = findViewById(R.id.detail_surplus); detailName = findViewById(R.id.detail_name); detailPrice = findViewById(R.id.detail_price);
这段代码是在通过findViewById方法获取布局文件中对应控件的引用,具体来说,是获取了布局文件中id分别为detail_info、detail_surplus、detail_name、detail_price的控件的引用。这些控件很可能是用于展示商品详情的,比如商品的名称、价格、库存等等。通过获取这些控件的引用,可以在代码中对这些控件进行进一步的操作,比如设置控件的文本、背景等等。在代码的后续部分,可能会通过这些控件的引用来显示商品详情信息。
reuser_name=findViewById(R.id.reuser_name); reuser_password=findViewById(R.id.reuser_password); rereuser_password=findViewById(R.id.rereuser_password); re_enter=findViewById(R.id.re_enter); re_enter.setOnClickListener(this);
这段代码是在 Activity 的 onCreate() 方法中对上述定义的控件进行了初始化,并为登录按钮设置了一个点击监听器。findViewById() 方法用于在布局文件中查找指定 ID 的控件,并将其赋值给对应的变量。在这里,reuser_name、reuser_password、rereuser_password 和 re_enter 都是在 activity_1.xml 布局文件中定义的控件,并且每个控件都有一个唯一的 ID,这些 ID 通过 R.id.** 的方式进行引用。最后,将点击监听器设置为 this,表示当前 Activity 实现了 OnClickListener 接口,并将该监听器绑定到登录按钮上,以便在用户点击登录按钮时触发相应的操作。
阅读全文