Java Integer intValue()方法具有什么功能呢?

Java-教程王 Java教程 发布时间:2021-09-09 23:13:54 阅读数:14754 1
下文笔者将讲述 java.lang.Integer intValue()方法的功能简介说明,如下所示:

java.lang.Integer intValue()的功能

java.lang.Integer.intValue()的功能:
返回Integer对象的int值

java.lang.Integer.intValue()的语法

语法
 public int intValue()
参数
 无

返回值
  返回Integer对象对应的int值
例:
package com.java.other;
import org.junit.Test;
public class other {
	/**
	 * java265.com Integer类的示例分享
	 * 
	 * @throws Exception
	 */
	@Test
	public void test() throws Exception {
		Integer i = 90;
		System.out.println(i.intValue());
	}
}
------运行以上代码,将输出以下信息------
90
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/202109/1148.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者