摘要: http://blog.csdn.net/whbing1471/article/details/52026261 出错的信息: 阅读全文
posted @ 2017-07-21 16:56 辉辉太郎 阅读(1338) 评论(0) 推荐(0) 编辑
摘要: 1、创建用户create user KD identified by 123456;2、授予连接数据库的权限grant connect to KD;3、将Scott用户的emp表授权给KD可以查询grant select on scott.emp to KD;grant create table t 阅读全文
posted @ 2017-07-21 13:19 辉辉太郎 阅读(196) 评论(0) 推荐(0) 编辑
摘要: java中声明为static的方法称为静态方法或类方法。静态方法可以直接调用静态方法,访问静态变量,但是不能直接访问实例变量和实例方法。静态方法中不能使用this关键字,因为静态方法不属于任何一个实例。静态方法不能被子类的静态方法覆盖。例如:static class CompanyEmployee{ 阅读全文
posted @ 2017-07-21 13:15 辉辉太郎 阅读(9974) 评论(0) 推荐(1) 编辑