在java中推荐使用Boolean vs boolean

时间:2018-06-08 09:44:46

标签: java boolean ejb wrapper

我们正在公开一个公共java API,它采用布尔类型作为方法参数,但想知道推荐的是什么 int level = intent.getIntExtra(BatteryManager.EXTRA_LEVEL,-1); int scale = intent.getIntExtra(BatteryManager.EXTRA_SCALE,-1); float batteryper = (level/(float)scale)*100; txtlevel.setText("battery level :"+batteryper+"%"); (Wrapper类)还是原始Boolean

该方法是客户端使用的EJB会话bean的一部分。

0 个答案:

没有答案