基本类型转string类型的方法

1:基本类型的值直接+“  ”;

2:包装类的静态方法的tostring(参数)方法,不是object的tostring方法

  public String toString()

3:string类的静态方法valueOf(参数)。

        //将基本类型转换为string类型
        int num=666;
        String s=num+"";
        System.out.println(s+100);

        String s1=Integer.toString(100);
        System.out.println(s1);

        String s3 = String.valueOf(num);
        System.out.println(s3);

        //将string类型转换为基本类型
        //将string类型转换为int类型
        String s4="999";
        int num1 = Integer.parseInt(s4);
        System.out.println("基本类型:"+s4);

原文地址:https://www.cnblogs.com/BatmanY/p/12074695.html

时间: 2024-10-01 00:38:22

基本类型转string类型的方法的相关文章

C++ double类型转string类型后,怎么实现小数点后只显示一个数字

C++ double类型转string类型后,怎么实现小数点后只显示一个数字 #include <iostream> #include <sstream> #include <iomanip> ?? template <class T> std::string fmt(T in, int width = 0, int prec = 0) { ????std::ostringstream s; ????s << std::setw(width) &

asp.net MVC Model 类的主键 int类型、string类型、GUID类型。

在使用asp.net mvc进行定义 模型类的时候,一般情况下,我们都会定义一个属性为 int iD{get;set;} 或为int ClassNameID {get;set;},在这种情况下 1.Int类型主键 EF的默认约定就是第一个属性如果是类名+id或是id(这两情况下id字母大小写没有关系),并且是int类型的,那么直接设置第一个属性为主键,同时设置自增长.不需要指定[Key]关键字(在 System.ComponentModel.DataAnnotations.Schema命名空间下

计算两个日期之间相差几天(Date类型与String类型互相转换)

一:计算两个日期之间相差几天 1 /** 2 * 3 */ 4 package com.hlcui.date; 5 6 import java.text.ParseException; 7 import java.text.SimpleDateFormat; 8 import java.util.Calendar; 9 import java.util.Date; 10 11 import org.junit.Test; 12 13 /** 14 * @author Administrator

Java Clob类型转String类型

前两天的项目中,有个字段是Clob类型的,用纯sql取数据的时候不能直接转成String类型的.所以得自己手动转一下,于是乎用到了以下代码,在这里贴出来分享一下,如果小伙伴们需要的可以直接拿去用,这个亲测是可以使用的哦... 话不多说,代码才是王道... // Clob类型 转String public String ClobToString(Clob clob) throws SQLException, IOException { String reString = ""; Read

Java中double类型与String 类型之间的互相转换

Java中String类型和double类型之间的转换 我们在注册网站的时候,往往需要填写个人信息,如姓名,年龄,出生日期等,在页面上的出生日期的值传递到后台的时候是一个字符串,而我们存入数据库的时候确需要一个日期类型,反过来,在页面上显示的时候,需要从数据库获取出生日期,此时该类型为日期类型,然后需要将该日期类型转为字符串显示在页面上,Java的API中为我们提供了日期与字符串相互转运的类DateForamt.DateForamt是一个抽象类,所以平时使用的是它的子类SimpleDateFor

StringBuilder类型与String类型相互转换

1 StringBuilder a = new StringBuilder("This is testDemo"); 2 String b = "Hello"+a; //将StringBuilder类型转换成String类型 3 StringBuilder a = new StringBuilder(a); //将String类型转换为StringBuilder类型 原文地址:https://www.cnblogs.com/vegetableDD/p/1165128

Number类型与String类型之间的转换

深入了解 Number 类型 Number 类型作为 JS 的基本数据类型之一,被应用在程序中的各种场景,其重要性就如数字对于我们日常生活. 下面就让我们来一起深入了解下,为以后的"策马奔腾"做好铺垫. 定义方式 一般来说我们可以直接使用数值字面量格式来定义一个数字,如下: var num1 = 15; var num2 = 7; console.log(typeof num1); // number console.log(typeof num2); // number 数值类型 定

Object类型转换为String类型

1. Object.toString() 1 obj.toString() 注意:必须保证Object不是null值,否则将抛出NullPointerException异常. 2. (String)Object 1 2 Object o = new Integer(100); String string = (String)o; 需要转换的类型必须是能够转换为String的,否则会出现CalssCastException异常错误. 3. String.valueOf(Object) 在使用Str

Java中Date类型与String类型互转

import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; /**      * String 转Date      */     public static Date stringToDate(String str){         SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");