JavaSE8基础 Integer构造方法 将符合标准的String类型转成int类型

os :windows7 x64
    jdk:jdk-8u131-windows-x64
    ide:Eclipse Oxygen Release (4.7.0)
    
    
code:

package jizuiku3;

public class Demo000 {
	public static void main(String[] args) {
		//字符串符合int规则的
		Integer n = new Integer("124567");
		System.out.println(n);

//		也会抛异常的代码
//		Integer n1 = new Integer("124567.44");
//		System.out.println(n1);

		//字符串不符合int规则的,会抛异常的
		Integer n2 = new Integer("124567a");
		System.out.println(n2);

	}
}

result:



Java优秀,值得学习。
学习资源:API手册+Java源码+清净的心地。

时间: 2024-10-11 20:18:23

JavaSE8基础 Integer构造方法 将符合标准的String类型转成int类型的相关文章

JavaSE8基础 Integer与int自动转换 自动装箱与拆箱

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku3; public class Demo111 { public static void main(String[] args) { //int是基本类型 //Integer是包装类型 //自动装箱是 基本自动变包装 //自动拆箱是 包装自动变基本 Integer i = n

JavaSE8基础 Integer.toXXX int类型变量以二进制 八进制的形式输出

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku2; public class Demo111 { public static void main(String[] args) { show(15); show(-15); } public static void show(int num) { System.out.pr

JavaSE8基础 Integer.valueOf 把int类型变为Integer类型

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku3; public class Demo1000 { public static void main(String[] args) { Integer i = Integer.valueOf(1234); } } sourceCode: public static Integ

JavaSE8基础 Integer.toString 将十进制类型转为指定进制[2,36]的表达形式

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku3; public class Demo010 { public static void main(String[] args) { System.out.println(Integer.toString(127, 2));//127的二进制 System.out.print

JavaSE8基础 Integer.parseInt 将[2,36]进制转为十进制

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku3; public class Demo011 { public static void main(String[] args) { System.out.println(Integer.parseInt("100", 2));// 这个字符串是二进制的形式 Sys

JavaSE8基础 Integer.toString 将int类型转为同面值的String类型

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku3; public class Demo001 { public static void main(String[] args) { int num = 1;//int 没有 tostring方法 Integer i = new Integer(num);//Integer有

JavaSE8基础 Integer 包装类对象的值不变

礼悟:    好好学习多思考,尊师重道存感恩.叶见寻根三二一,江河湖海同一体.          虚怀若谷良心主,愿行无悔给最苦.读书锻炼强身心,诚劝且行且珍惜. javaSE:1.8             os:windows7 x64            ide:MyEclipse 2017 代码 package jizuiku.demo; /** * Integer 包装类的对象不能改变其中的值 * * @author 给最苦 * @version V17.11.06 */ publi

JavaSE8基础 StringBuffer substring 将变量分割返回String,其本身不变

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku1; public class Demo110 { public static void main(String[] args) { StringBuffer sb = new StringBuffer(); sb.append("cnblog"); String

SqlSever基础 convert 将类型为字符的一列转成Int类型后进行排序

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 base code 1 use master 2 drop database helloworld 3 4 --创建一个数据库 5 create database helloworld 6 7 --用helloworld1这个数据库 8 use helloworld 9 10 --创建一个表格