实验六继承定义与使用 理论知识: 继承的定义:可以基于已存在的类构造一个新类,继承已存在的类就是复用这些类的方法和域。 继承的特点是具有层次结构,子类继承父类的方法和域。 由继承Employee类来定义Manager类的格式,关键字extends表示继承。 关键字extends表明正在构造的新类派生 ...
分类:
其他好文 时间:
2018-10-07 16:43:28
阅读次数:
216
触发器类似于一个监听器的作用。 create trigger triempAdd after update on employee row insert into test_log(content)values('员工表修改了一条记录') 修改 create trigger triempAdd af ...
分类:
其他好文 时间:
2018-10-06 10:42:31
阅读次数:
149
《面向对象程序设计(java)》第五周学习总结 第一部分:课程准备部分 第二部分:理论知识学习部分 第四章:对象与类 4.1:类与对象的概念。 类:是构造对象的模板或蓝图。由类构造对象的过程称为创建类的实例。 对象:想要使用oop,一定要清楚对象的三个特性: 1)对象的行为:对象的行为使用可调用的方 ...
分类:
编程语言 时间:
2018-09-29 19:18:05
阅读次数:
188
import java.io.*; public class Employee{ String name; int age; String designation; double salary; // This is the constructor of the class Employee pub ...
分类:
编程语言 时间:
2018-09-28 15:20:42
阅读次数:
163
前期准备: create table Employee ( ID int not null primary key, Name nvarchar(4), Credit_Card_ID varbinary(max)); 小心这种数据类型。 go 说明:本表上的索引,都会在创建下一个索引前删除。 操作 ...
分类:
数据库 时间:
2018-09-28 01:30:38
阅读次数:
176
实验四 类与对象的定义及使用 第一部分:理论知识学习 1.类与对象概念 (1)类是构造对象的模板或蓝图,由类构造对象的过程称为创建类的实例。 (2)对象:即数据,对象有三个特性,行为、状态、标识。 2.类与对象的关系 (1)类是对象,事物的描述和抽象,是具有相同属性和行为的对象集合。对象则是该类事物 ...
分类:
编程语言 时间:
2018-09-26 01:13:47
阅读次数:
235
Select all employee's name and bonus whose bonus is < 1000. Table:Employee Table: Bonus Example ouput: 选出所有奖金<1000元的雇员姓名及奖金数额 解法1: 解法2: All LeetCode Q ...
分类:
其他好文 时间:
2018-09-25 14:09:44
阅读次数:
173
句子改错 一、 Employee can get more benefits from telecommuting than employer. 错误:可数名词不能裸奔,前加冠词(a,an,the)或者变为复数形式。 改: Employees can get more benefits from t ...
分类:
其他好文 时间:
2018-09-24 00:37:36
阅读次数:
234
多表查询 多表连接查询 符合条件连接查询 子查询 准备工作:准备两张表,部门表(department)、员工表(employee) create table department( id int, name varchar(20) ); create table employee( id int p ...
分类:
其他好文 时间:
2018-09-21 23:14:21
阅读次数:
196
恢复内容开始 主要内容 1 多表连接查询 语法: select 字段列表 from 表一 inner/left/right join 表二 on 表一.字段 = 表二.字段 内连接: 直连接匹配的行: select * from employee inner join department on e ...
分类:
其他好文 时间:
2018-09-20 22:19:11
阅读次数:
187