提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
要强制转换原始值,请使用强制转换运算符。
public class Main { public static void main(String[] args) { double pi = 3.1314; int iPi;/** n o w j a v a . c o m 提供 **/ iPi = (int) pi; System.out.println(iPi); System.out.println(pi); } }