10 2021 档案
摘要:1.1 select fengshu from table where name="张三" and kecheng="语文"; 1.2 update table set fengshu=23 where name="张三" and kecheng="语文"; 1.3 delete from tabl
阅读全文
摘要:extends与implements的不同 1、在类的声明中,通过关键字extends来创建一个类的子类。 一个类通过关键字implements声明自己使用一个或者多个接口。 extends 是继承某个类, 继承之后可以使用父类的方法, 也可以重写父类的方法; implements 是实现多个接口,
阅读全文