面向对象中 这一章主要涉及面向对象的三大特征,包括封装、继承、多态、(抽象)。 封装 程序设计追求“高内聚,低耦合”: 高内聚 :类的内部数据操作细节自己完成,不允许外部干涉; 低耦合 :仅对外暴露少量的方法用于使用。 通俗的说,把该隐藏的隐藏起来,该暴露的暴露出来,这就是封装性的设计思想。 通过将 ...
分类:
编程语言 时间:
2020-12-18 13:03:02
阅读次数:
3
1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional ...
分类:
编程语言 时间:
2020-12-08 12:13:52
阅读次数:
7
TSynDictionary mormot.core.json.pas /// thread-safe dictionary to store some values from associated keys // - will maintain a dynamic array of values, ...
分类:
其他好文 时间:
2020-12-07 12:26:55
阅读次数:
5
权限修饰符: public: 公共的 protected: 受保护的 (default): 默认不写 private:私有的 .publicprotected(default)private 同一类中 √ √ √ √ 同一包下不同类中 √ √ √ × 不同包的子类中 √ √ × × 不同包的非子类中 ...
分类:
编程语言 时间:
2020-12-02 12:30:44
阅读次数:
6
#[极客大挑战 2019]PHP ###知识点 1、public、protected与private在序列化时的区别: protected属性被序列化的时候属性值会变成%00*%00属性名 private属性被序列化的时候属性值会变成%00类名%00属性名 测试: <?php class peopl ...
分类:
Web程序 时间:
2020-11-24 12:10:02
阅读次数:
8
父类: public class Parent { //看这里的this指的是什么 public Parent() { this.say(); } protected void say() { System.out.println("father"); } } 子类: public class Su ...
分类:
其他好文 时间:
2020-11-21 12:40:44
阅读次数:
24
[TOC] 设计模式 UML 统一建模语言 +代表public 代表private 代表protected 空心三角形+实线表示继承 空心三角形+虚线表示实现接口 关联关系用实线来表示 空心菱形+实线箭头表聚合关系 虚线箭头表依赖关系 http://note.youdao.com/noteshare ...
分类:
其他好文 时间:
2020-11-20 11:40:27
阅读次数:
4
springboot发布war包部署 1. 程序入口类需继承 SpringBootServletInitializer 类 2. 程序入口复写以下方法 @Override protected SpringApplicationBuilder configure(SpringApplicationBu ...
分类:
编程语言 时间:
2020-11-18 13:23:04
阅读次数:
20
开始吧 1、 准备 403 错误页面 <div class="layui-body"> <!-- 内容主体区域 --> <div style="padding: 15px;"> <h1>非常抱歉!您没有访问这个功能的权限!(回家照照镜子)</h1> <h2>${message }</h2> </di ...
分类:
其他好文 时间:
2020-11-08 17:20:06
阅读次数:
22
开始吧 1、 在自己的配置类中重写父类的 configure(HttpSecuritysecurity)方法。 SpringSecurityConfig //重写configure方法进行配置 @Override protected void configure(HttpSecurity httpS ...
分类:
其他好文 时间:
2020-11-07 17:35:26
阅读次数:
23