抽象类就是不能使用new方法进行实例化的类,即没有具体实例对象的类。抽象类有点类似“模板”的作用,目的是根据其格式来创建和修改新的类。对象不能由抽象类直接创建,只可以通过抽象类派生出新的子类,再由其子类来创建对象。当一个类被声明为抽象类时,要在这个类前面加上修饰符abstract. 在抽象类中的成....
                            
                            
                                分类:
编程语言   时间:
2014-09-02 11:54:24   
                                阅读次数:
237
                             
                    
                        
                            
                            
                                /WEB-INF/web.xmlWeb应用程序配置文件,描述了 servlet 和其他的应用组件配置及命名规则。/WEB-INF/classes/包含了站点所有用的 class 文件,包括 servlet class 和非servlet class,他们不能包含在 .jar文件中。/WEB-INF/...
                            
                            
                                分类:
编程语言   时间:
2014-09-02 11:50:04   
                                阅读次数:
171
                             
                    
                        
                            
                            
                                抽象类: 如果一个类不与具体的事物相联系,而只是表达一种抽象的概念,仅仅是作为其派生类的一个基类,这样的类就是抽象类,在抽象类中声明方法时,如果加上abstract时就是抽象方法接口:表示一种能力。。接口中的方法,不需要访问修饰符,不需要实现接口就是为了多态存在C#中的类,单继承可以说,类继承了接口...
                            
                            
                                分类:
其他好文   时间:
2014-09-01 21:08:33   
                                阅读次数:
173
                             
                    
                        
                            
                            
                                WEB-INF /WEB-INF/web.xml 你的Web应用程序配置文件,这是一个XML文件,其中描述了 servlet 和其他的应用组件配置及命名规则; /WEB- INF/classes/ 这个目录包含了站点所有用的 class 文件,包括 servlet class 和非servlet c...
                            
                            
                                分类:
编程语言   时间:
2014-09-01 19:19:53   
                                阅读次数:
185
                             
                    
                        
                            
                            
                                ??Classes类Classes are the most important building block of any object-oriented system. A class is a description of a set of objects that share the sam...
                            
                            
                                分类:
其他好文   时间:
2014-09-01 19:08:53   
                                阅读次数:
235
                             
                    
                        
                            
                            
                                php autoloader:This is a class for PHP that keeps the user from having to manually include classes by automatically including them on-the-fly as neede...
                            
                            
                                分类:
Web程序   时间:
2014-09-01 17:39:33   
                                阅读次数:
249
                             
                    
                        
                            
                            
                                /* --- name: Class description: Contains the Class Function for easily creating, extending, and implementing reusable Classes. license: MI...
                            
                            
                                分类:
其他好文   时间:
2014-09-01 15:29:13   
                                阅读次数:
208
                             
                    
                        
                            
                            
                                /* --- name: Fx description: Contains the basic animation logic to be extended by all other Fx Classes. license: MIT-style license. req...
                            
                            
                                分类:
其他好文   时间:
2014-09-01 15:28:53   
                                阅读次数:
223
                             
                    
                        
                            
                            
                                /** * 添加点击的样式 */function addClickClass(){ var eles = ["a.province",".citys"]; var classes = ["hover","hover2"]; for (var i = 0; i < eles.leng...
                            
                            
                                分类:
Web程序   时间:
2014-09-01 13:57:33   
                                阅读次数:
237
                             
                    
                        
                            
                            
                                Definition Ensure a class has only one instance and provide a global point of access to it.Participants The classes and/or objects participating in th...
                            
                            
                                分类:
其他好文   时间:
2014-09-01 12:19:33   
                                阅读次数:
162