zoukankan      html  css  js  c++  java
  • int 和 String 互相转换的多种方法

    5.1 如何将字串 String 转换成整数 int? 

    A. 有两个方法:

    1). int i = Integer.parseInt([String]); 或 
    i = Integer.parseInt([String],[int radix]);

    2). int i = Integer.valueOf(my_str).intValue(); 

    注: 字串转成 Double, Float, Long 的方法大同小异. 


    5.2 如何将整数 int 转换成字串 String ? 


    A. 有叁种方法:

    1.) String s = String.valueOf(i);

    2.) String s = Integer.toString(i); 

    3.) String s = "" + i; 

    注: Double, Float, Long 转成字串的方法大同小异. 

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    再逛开心网
    WAPM
    win2003安装flash cs4
    [AS3][物体的运动]
    转sql产生百万记录
    KeyedList
    timer 焦点
    sql优化
    灰色
    参数
  • 原文地址:https://www.cnblogs.com/shipeng22022/p/4614230.html
Copyright © 2011-2022 走看看