java类型转换
摘要:类型转换虽然很简单,但是还是有些小细节要多注意。 ### String转化为int: ``` String test="123"; int number=Integer.parseInt(test); ``` ### String转化为Integer: ``` String test="123";
阅读全文
posted @ 2020-03-31 00:19
posted @ 2020-03-31 00:19
posted @ 2020-03-08 14:57