开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 1317|回复: 0
收起左侧

[JS相关教程] java的各种变量类型的转换

[复制链接]

结帖率:61% (35/57)
发表于 2013-1-19 13:31:50 | 显示全部楼层 |阅读模式   海南省白沙黎族自治县
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 的方法大同小异.
  2 如何将整数 int 转换成字串 String ?
  A. 有叁种方法:
  1.) String s = String.valueOf(i);
  2.) String s = Integer.toString(i);
  3.) String s = "" + i;
  注: Double, Float, Long 转成字串的方法大同小异.
  java的各种变量类型的转换
  integer  to  String :  int   i   =   42;
  String   str   =   Integer.toString(i);
  String   str   =   ""   +   i
  double  to  String   :       String   str   =   Double.toString(i);
  long  to  String   :         String   str   =   Long.toString(l);
  float  to  String   :        String   str   =   Float.toString(f);
  String to integer   :       str   =   "25";
  int   i   =   Integer.valueOf(str).intValue();
  int   i   =   Integer.parseInt(str);
  String to double : double  d  =   Double.valueOf(str).doubleValue();
  String  to  long :  long   l   =   Long.valueOf(str).longValue();
  long   l   =   Long.parseLong(str);
  String  to  float : float   f   =   Float.valueOf(str).floatValue();
  decimal   to   binary   :   int   i   =   42;
  String   binstr   =   Integer.toBinaryString(i);
  decimal   to   hexadecimal :    int   i   =   42;
  String   hexstr   =   Integer.toString(i,   16);
  String   hexstr   =   Integer.toHexString(i);
  hexadecimal   (String)   to   integer   :
  int  i  =  Integer.valueOf("B8DA3",16).intValue();
  int   i   =   Integer.parseInt("B8DA3",   16);
  ASCII  code to  String   int i  =  64;
  String   aChar   =   new   Character((char)i).toString();
  integer   to   ASCII   code   (byte)
  char   c   =   'A';
  int   i   =   (int)   c;
  To extract Ascii codes from a Strin    String   test   =   "ABCD";
  for ( int i  =  0; i  <  test.length();   ++i   )
  {
  char   c   =   test.charAt(   i   );
  int   i   =   (int)   c;
  System.out.println(i);
  }
  integer   to   boolean       b   =   (i   !=   0);
  boolean   to   integer       i   =   (b)?1:0;
  note :To catch  illegal  number  conversion, try  using  the   try/catch mechanism. try{
  i   =   Integer.parseInt(aString);
  }
  catch(NumberFormatException   e)
  {
  }
您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表