博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
long.intvalue_Java Long类intValue()方法与示例
阅读量:2527 次
发布时间:2019-05-11

本文共 1783 字,大约阅读时间需要 5 分钟。

long.intvalue

长类intValue()方法 (Long class intValue() method)

  • intValue() method is available in java.lang package.

    intValue()方法在java.lang包中可用。

  • intValue() method is used to return the value denoted by this Long object converted to type int (by casting).

    intValue()方法用于返回此Long对象表示的值,该值转换为int类型(通过强制转换)。

  • intValue() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    intValue()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • intValue() method does not throw an exception at the time of conversion from long to int.

    从long转换为int时, intValue()方法不会引发异常。

Syntax:

句法:

public int intValue();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is int, it returns a converted (from type long to int) value represented by this Long object.

此方法的返回类型为int ,它返回一个由此Long对象表示的转换后的值(从long型到int型)。

Example:

例:

// Java program to demonstrate the example // of intValue() method of Long classpublic class IntValueOfLongClass {
public static void main(String[] args) {
// Variables initialization long value1 = 100; long value2 = 200; // It returns long value denoted by this Long ob1 object // and converted to a int by calling ob1.intValue() Long ob1 = new Long(value1); // Display ob1 result System.out.println("ob1.intValue(): " + ob1.intValue()); // It returns long value denoted by this Long ob2 object // and converted to an int by calling ob2.intValue() Long ob2 = new Long(value2); // Display ob2 result System.out.println("ob2.intValue(): " + ob2.intValue()); }}

Output

输出量

ob1.intValue(): 100ob2.intValue(): 200

翻译自:

long.intvalue

转载地址:http://lsvzd.baihongyu.com/

你可能感兴趣的文章
数据库TCPIP协议开了,但还是远程连不上
查看>>
一般处理程序在VS2012中打开问题
查看>>
C语言中的++和--
查看>>
thinkphp3.2.3入口文件详解
查看>>
POJ 1141 Brackets Sequence
查看>>
Ubuntu 18.04 root 使用ssh密钥远程登陆
查看>>
linux 单机跨进程通信
查看>>
Servlet和JSP的异同。
查看>>
虚拟机centOs Linux与Windows之间的文件传输
查看>>
ethereum(以太坊)(二)--合约中属性和行为的访问权限
查看>>
IOS内存管理
查看>>
监听系统键盘的方法
查看>>
Mysql两个引擎对比
查看>>
测试书籍推荐
查看>>
php魔术方法
查看>>
BZOJ4025 : 二分图
查看>>
SQL server中的SQL语句拼接
查看>>
17、生命周期-BeanPostProcessor在Spring底层的使用
查看>>
jQuery表单验证
查看>>
MySQL中数据表的查操作
查看>>