码迷,mamicode.com
首页 >  
搜索关键字:out    ( 35870个结果
jsp九大内置对象
jsp 九大内置对象 JSP中一共预先定义了9个这样的对象,分别为:request、response、session、application、out、pagecontext、config、page、exception 1、request对象request 对象是 javax.servlet.http...
分类:Web程序   时间:2015-03-15 22:36:13    阅读次数:188
Hibernate的fetch
hibernate抓取策略fetch具体解释一、hibernate抓取策略(单端代理的批量抓取fetch=select(默认)/join)測试用例:Student student = (Student)session.get(Student.class, 1);System.out.println(...
分类:Web程序   时间:2015-03-15 18:07:39    阅读次数:197
Java IO流详解(三)
Scanner类 1 从键盘读取public class ScannerTest { public static void main(String[] args ) { Scanner input = new Scanner(System.in); System.out.println("请输出一个整数:"); int i = input.n...
分类:编程语言   时间:2015-03-15 16:52:38    阅读次数:165
nyoj Sorting It All Out (拓扑排序)
三种情况分别是:1. 在某位置可以确定拓扑排序。2. 在某位置出现了环3. 到最后都不能确定拓扑排序(某一位置入度为0的点有多个),可以续输入执行下去。每输入一组数据都要做一次判断 1 #include 2 #include 3 #include 4 #include 5 using namespa...
分类:编程语言   时间:2015-03-15 16:50:57    阅读次数:223
如果局部变量与实例变量同名,那么如何在局部变量的作用域内引用实例变量?
public class Sample{ private int a=1; //实例变量 public void b() { int a=2; //局部变量 System.out.println("局部变量:a="+a); System.out.println("实例变量:a="+this...
分类:其他好文   时间:2015-03-15 16:46:21    阅读次数:123
uva 10192 Vacation(最长公共子序列)
uva 10192 VacationThe ProblemYou are planning to take some rest and to go out on vacation, but you really don’t know which cities you should visit. So, you ask your parents for help. Your mother says “...
分类:其他好文   时间:2015-03-15 15:21:52    阅读次数:197
[转载]errorlevel与%errorlevel%的区别
批处理中的IF ERRORLEVEL 今天远程一个客户,发现他的服务器会不定时自动断开网络,导致客户端连接不了服务端,但是重启服务以后又恢复正常,初步判断可能是由于某个系统服务与winpacp有冲突,建议用户恢复操作系统,他想等晚上再开始操作,今天就只好一直运行个ping,发现timed out就手...
分类:其他好文   时间:2015-03-15 15:06:44    阅读次数:150
MapReduce 编程 系列七 MapReduce程序日志查看
首先,假设须要打印日志,不须要用log4j这些东西,直接用System.out.println就可以,这些输出到stdout的日志信息能够在jobtracker网站终于找到。其次,假设在main函数启动的时候用System.out.println打印的日志,直接在控制台就能够看到。再其次,jobtr...
分类:其他好文   时间:2015-03-15 13:48:54    阅读次数:108
Climbing Stairs - Print Path
stair climbing, print out all of possible solutions of the methods to climb a stars, you are allowed climb one or two steps for each time; what is tim...
分类:其他好文   时间:2015-03-15 12:14:56    阅读次数:130
URAL 1725. Sold Out!(数学啊 )
URAL 1725. Sold Out!(数学啊 )...
分类:其他好文   时间:2015-03-15 09:27:09    阅读次数:133
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!