博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java define_Java Integer类的define()方法与示例
阅读量:2531 次
发布时间:2019-05-11

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

java define

整数类的encode()方法 (Integer class decode() method)

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

    在java.lang包中提供了define ()方法

  • decode() method is used to decode the given String value into an integer value.

    encode()方法用于将给定的String值解码为整数值。

  • decode() method is a static method, it is accessible with the class name too and if we try to access the method with the class object then also we will not get an error.

    encode()方法是一个静态方法,也可以使用类名进行访问,如果我们尝试使用类对象访问该方法,那么也不会收到错误。

  • decode() method may throw a NumberFormatException at the time of decoding a String to an Integer.

    在将String解码为Integer时, encode ()方法可能会引发NumberFormatException

    NumberFormatException: In this exception, if the given string parameter does not have a parsable integer.

    NumberFormatException :在此异常中,如果给定的字符串参数没有可解析的整数。

Syntax:

句法:

public static Integer decode(String str);

Parameter(s):

参数:

  • String str – represents the string to be decoded.

    字符串str –表示要解码的字符串。

Return value:

返回值:

The return type of this method is Integer, it returns the Integer holding an integer value represented by the argument of String type.

此方法的返回类型为Integer ,它返回一个Integer,其中保存一个由String类型的参数表示的整数值。

Example:

例:

// Java program to demonstrate the example // of decode(String str) method of Integer classpublic class DecodeOfIntegerClass {
public static void main(String[] args) {
// Variables initialization int i = 100; String str = "20"; // Integer object initialized with "int" value Integer value1 = new Integer(i); // Display value1 result System.out.println("value1: " + value1); // It returns an Integer object holding the integer value // denoted by the given String argument by calling // value1.decode(str) Integer result = value1.decode(str); // Display result System.out.println("value1.decode(str) :" + result); }}

Output

输出量

value1: 100value1.decode(str) :20

翻译自:

java define

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

你可能感兴趣的文章
考勤系统之计算工作小时数
查看>>
4.1 分解条件式
查看>>
Equivalent Strings
查看>>
flume handler
查看>>
收藏其他博客园主写的代码,学习加自用。先表示感谢!!!
查看>>
H5 表单标签
查看>>
su 与 su - 区别
查看>>
C语言编程-9_4 字符统计
查看>>
在webconfig中写好连接后,在程序中如何调用?
查看>>
限制用户不能删除SharePoint列表中的条目(项目)
查看>>
【Linux网络编程】使用GDB调试程序
查看>>
feign调用spring clound eureka 注册中心服务
查看>>
RotateCard(自定义旋转view)
查看>>
ZT:Linux上安装JDK,最准确
查看>>
LimeJS指南3
查看>>
关于C++ const成员的一些细节
查看>>
《代码大全》学习摘要(五)软件构建中的设计(下)
查看>>
C#检测驱动是否安装的问题
查看>>
web-4. 装饰页面的图像
查看>>
微信测试账户
查看>>