- 浏览: 111323 次
- 性别:
- 来自: 珠海
最新评论
-
xia552346:
非常感谢楼主的分享,找了好久,终于找到了!
PowerMock应用 -
kongxl123:
楼主生猛!!
PowerMock应用
文章列表
<property name="tomcat.home" value="E:/tomcat6018" />
<target name="exec">
<exec dir="${tomcat.home}" executable="cmd.exe" >
<arg line="/c ${tomcat.home}/bin/startup.bat" />
<arg line ...
题目:
写一个方法,要求参数int类型,如:传入一个12345,返回结果54321。
面试的时候遇到这个题,还有个要求,是方法体内的代码不能超过8行,而且还要用递归。
public static void main(String[] args) {
System.out.println(f(12345, 0));
...