摘要: 在面向对象编程中,抽象类和接口是两个经常被用到的语法概念,是面向对象四大特性,以及很多设计模式、设计思想、设计原则编程实现的基础。比如,我们可以使用接口来实现面向对象的抽象特性、多态特性和基于接口而非实现的设计原则,使用抽象类来实现面向对象的继承特性和模板设计模式等等。 这两个语法概念不仅在工作中经 阅读全文
posted @ 2021-06-10 15:26 hochan_100 阅读(32) 评论(0) 推荐(0) 编辑
摘要: create temporary table temp_t like t1; alter table temp_t add index(b); insert into temp_t select * from t2 where b>=1 and b<=2000; select * from t1 j 阅读全文
posted @ 2021-06-10 12:21 hochan_100 阅读(181) 评论(0) 推荐(0) 编辑