摘要: 1:打开帮助文档 2:点击显示,找到索引,看到输入框 3:知道你要找谁?以Scanner举例 4:在输入框里面输入Scanner,然后回车 5:看包 java.lang包下的类不需要导入,其他的全部需要导入。 要导入: java.util.Scanner 6:再简单的看看类的解释和说明,别忘了看看该 阅读全文
posted @ 2017-05-12 17:34 花醉红尘 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 1、静态代码块和构造代码块 2、继承概述 3、Java中继承的特点 4、继承的注意事项 5、继承中成员变量 6、this和super 7、继承中构造方法的关系 8、子类调用父类构造 练习1、 练习2、 练习3、 9、继承中成员方法的关系 10、重写父类方法 11、方法重写的注意事项 练习4、 练习5 阅读全文
posted @ 2017-05-12 17:06 花醉红尘 阅读(290) 评论(0) 推荐(0) 编辑
摘要: mysql 众多关系型数据库中的一种 用来存数据的 一个仓库 -- 一个数据库 箱子 -- 表 进入mysql命令行: mysql -uroot -pxxx show tables;#查看所有表 数据库: 查看 show databases; 创建 create database bkl chars 阅读全文
posted @ 2017-05-12 13:07 花醉红尘 阅读(207) 评论(0) 推荐(0) 编辑
摘要: /* 以下代码是对emp表进行显示宽度设置 */ col empno for 9999; col ename for a10; col job for a10; col mgr for 9999; col hiredate for a12; col sal for 9999; col comm fo 阅读全文
posted @ 2017-05-12 12:55 花醉红尘 阅读(525) 评论(0) 推荐(0) 编辑
摘要: /* 以下代码是对emp表进行显示宽度设置 */ col empno for 9999; col ename for a10; col job for a10; col mgr for 9999; col hiredate for a12; col sal for 999999; col comm 阅读全文
posted @ 2017-05-12 12:49 花醉红尘 阅读(1504) 评论(0) 推荐(0) 编辑
摘要: /* 以下代码是对emp表/dept表/salgrade表进行显示宽度设置 */ col empno for 9999; col ename for a10; col job for a10; col mgr for 9999; col hiredate for a12; col sal for 9 阅读全文
posted @ 2017-05-12 12:37 花醉红尘 阅读(598) 评论(0) 推荐(0) 编辑
摘要: /* --以下代码是对emp表进行显示宽度设置 col empno for 9999; col ename for a10; col job for a10; col mgr for 9999; col hiredate for a12; col sal for 9999; col comm for 阅读全文
posted @ 2017-05-12 12:21 花醉红尘 阅读(4086) 评论(0) 推荐(0) 编辑
摘要: Linux文件的目录结构:树状结构,/为最高的根目录 root:root用户的个人文件夹(家目录) bin:存放多数用户可用的命令 boot:存放启动文件和配置信息,系统启动时会用 dev:存放设备文件,/dev/hdc代表光驱 etc:存放服务配置文件 home:其他用户的家目录 lib:存放程序 阅读全文
posted @ 2017-05-12 12:03 花醉红尘 阅读(2073) 评论(0) 推荐(0) 编辑