今天我们近进行了第一次考试,机试题看着挺简单的,但我最后还是没有做出来,因为我对Integer.parseInt()的用法理解错误,Integer.parseInt()是将数字类的字符或字符串转化为int型的数据,若你的字符串里包含字母等元素,则会报错,回来后我又对着程序调试了一会,终于才发现问题在...
分类:
其他好文 时间:
2014-05-10 01:43:05
阅读次数:
290
18.public class Test{ public static void
add3(Integer i) { int val=i.intvalue(); val+=3; i=new Integer(val); } ...
分类:
其他好文 时间:
2014-05-08 21:03:25
阅读次数:
348
-switch语句能作用在byte上,能否作用在long上,能否作用在String上?-在switch(expr1)中,expr1只能是一个整数表达式或者枚举常量,整数表达式可以是int基本类型或Integer包装类型,由于byte,short,char都可以隐式转换为int,所以这些类型以及这些类...
分类:
编程语言 时间:
2014-05-08 20:32:56
阅读次数:
371
1、数据类型 Java的数据类型分为基本数据类型和引用数据类型。 a, 基本数据类型包括:byte,
boolean, char, short, int, long, float, double; b, 每个基本数据类型都有相应的引用类型,比如int ->
Integer,char -> ch...
分类:
编程语言 时间:
2014-05-07 17:54:03
阅读次数:
417
简要记录存储过程语法与Java程序的调用方式 一 存储过程
首先,我们建立一个简单的表进行存储过程的测试createtable xuesheng(id integer, xing_ming varchar2(25),
yu_wen number, shu_xue number);insert...
分类:
数据库 时间:
2014-05-07 09:03:45
阅读次数:
430
一次通过,它的spoiler里面的提示有两个:1. 末尾为0的情况,这个考虑到了2.Did you
notice that the reversed integer might overflow? Assume the input is a 32-bit
integer, then the reve...
分类:
其他好文 时间:
2014-05-06 11:10:45
阅读次数:
356
解析:注意前后中间(或全是)的空格,注意正负号,注意溢出,(题目要求中没有:注意特殊字符出现)
分类:
其他好文 时间:
2014-05-05 10:51:41
阅读次数:
396
49. 把字符串转换为整数 很多细节需要注意。(空格,符号,溢出等) Go: 8.
String to Integer (atoi) 50. 树种两个结点的最低公共祖先 A. 若是二叉搜索树,直接与根结点对比。
若都大于根节点,则在友子树;若都小于根节点,则在左子树;若根节点介于两数之间,则根节点即...
分类:
其他好文 时间:
2014-05-05 10:25:00
阅读次数:
477
题目
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /.
Each operand may be an integer or another expression.
Some examples:
["2...
分类:
其他好文 时间:
2014-05-04 18:34:44
阅读次数:
272
解决办法:
bean里的int 类型替换成 Integer
.hbm.xml 改为java.lang.Integer...
分类:
其他好文 时间:
2014-05-04 17:56:01
阅读次数:
298