摘要:
第一步:创建“包装”类以封装预定义集群类型 public class EncapsulatePredefinedCluster { private ArrayList students; public EncapsulatePredefinedCluster() { students = new A 阅读全文
摘要:
通过继承FameWork为我们定义好的群集对象,并对其做扩展处理,可以达到我们想要的结果,本例以ArrayList群集为例,在ArrayList中添加最长/最短元素属性。 注:本例仅作为创建自己群集的方法思路,请勿硬套实际业务或项目。 public class MyStringCollection: 阅读全文
摘要:
if exists(select name from sysobjects where name = 'stuInfo')drop table stuInfogocreate table stuInfo(stuName varchar(20) not null, --学员名称stuNo char(6 阅读全文