
JAVA
iteye_1821
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Java取模运算
目前大家都以为 % 在JAVA中是取模(mod)运算经过测试,在JAVA中却是取余操作符,如:System.out.println(90%50) --结果是:40,取模的正确结果应该是1 怎么自行实现呢,很简单,用除 (int)Math.floor(90/10)(int)Math.floor(90/20)(int)Math.floor(90/50) 输...原创 2013-05-17 13:50:46 · 704 阅读 · 0 评论 -
【转】Remote debugging of Tomcat using Eclipse
This post shows how to debug an application deployed in Apache Tomcat remotely (Tomcat is a popular Servlet container). This is valid for any other application server or any other Java application si...原创 2013-06-14 14:17:26 · 146 阅读 · 0 评论