search

Home  >  Q&A  >  body text

JAVA类型转换问题

(int)XX与Integer.parseInt(XX)有什么区别啊,能不能详细点给我解释一下

phpcn_u830phpcn_u8302806 days ago885

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:46:24

    JAVA type conversion problem-PHP Chinese website Q&A-JAVA type conversion problem-PHP Chinese website Q&A

    Look around and learn.

    reply
    0
  • 巴扎黑

    巴扎黑2017-03-10 10:19:16

    (int)方式称为强制转换,是相同等级之间的类型转换,不能int(String)。
    Integer.parseInt(XX),只能是Integer.parseInt(String),专门将String转为int

    reply
    0
  • Cancelreply