创建一个存储过程,以部门号为参数,返回该部门的人数和最高工资。CREATE OR REPLACE PROCEDURE return_deptinfo( p_deptno emp.deptno%TYPE, p_avgsal OUT emp.sal%TYPE, p_count OUT emp.sal%T...
分类:
数据库 时间:
2015-04-26 12:15:47
阅读次数:
187
One of my friends asked me to do a favor for her. She said her friend deleted some important chat messages by “accident”, and her friend want to recov...
分类:
其他好文 时间:
2015-04-26 10:48:03
阅读次数:
276
转自http://blog.sina.com.cn/s/blog_4a9f789a0100ik3p.html一.获得控制台用户输入的信息public String getInputMessage() throws IOException...{System.out.println("请输入您的命令∶...
分类:
编程语言 时间:
2015-04-26 10:44:20
阅读次数:
156
package?com.yuan.test;
public?class?Testyuhuo?{
????public?static?void?main(String[]?args){
????????int?i=3;
????????System.out.println("i++:"+i++);?//output:3
?...
分类:
编程语言 时间:
2015-04-25 21:19:24
阅读次数:
181
1、编写一个helloworld程序publicclassHelloWorld{//程序的入口publicstaticvoidmain(Stringargs[]){//向控制台输出信息System.out.println("我的第一个程序HelloWorld");在编写Java程序时注意,通常Jav...
分类:
其他好文 时间:
2015-04-25 18:06:49
阅读次数:
141
Java一种错误的实例化方法:在默认无参构造函数中进行实例化
代码如下:
package Construction_test;
public class A {
static int i=0;
public A() { //默认构造方法
i++;
System.out.println("---before--- " + i);
A a2 =new A(); //...
分类:
编程语言 时间:
2015-04-25 16:43:52
阅读次数:
98
【Title】Pico CTF 2014 Write-up snippet 【Description】 We found this program snippet.txt, but we're having some trouble figuring it out. What's the value...
分类:
其他好文 时间:
2015-04-25 12:08:43
阅读次数:
305
/*Name : Power by :StuartDate:2015.4.25*/class PassOn{ //创建show方法,把i传入,输出i+1的结果 public void show(int i){ i=i+1; System.out.println...
分类:
编程语言 时间:
2015-04-25 12:01:44
阅读次数:
164
一、什么是CACA(CertificateAuthority)是数字证书认证中心的简称,是指发放、管理、废除数字证书的机构。CA的作用是检查证书持有者身份的合法性,并签发证书(在证书上签字),以防证书被伪造或篡改,以及对证书和密钥进行管理。二、为什么使用CACA是PKI(PublicKeyInfrastruct..
分类:
其他好文 时间:
2015-04-25 00:24:30
阅读次数:
306
部用命令行工具和Notepad编辑器,不用VisualStudio等集成编辑环境,创建一个命令行程序:“Hello World”public class Hello{public static void main(String[] args){System.out.println("Hello Wo...
分类:
其他好文 时间:
2015-04-25 00:02:23
阅读次数:
155