一、需求说明 应用实例要求: 编写程序展示一个学校院系结构:要在一个页面中展示出学校的院系组成,一个学校有多个学院,一个学院有多个系。 二、组合模式应用 1、思路分析和图解 2、代码实现 Component 组件抽象类: 1 public abstract class OrganizationCom ...
分类:
其他好文 时间:
2021-01-27 13:10:33
阅读次数:
0
create—>show—>activate—>closequery—>close—>destroy。其中activate事件和deactivate事件触发时机是在:1、同一个应用程序的2、非模态窗体间3、当前窗体被激活(activate)/失去焦点(deactivate)切换的时候触发。当前窗体所 ...
package demo01; //静态代理,真实对象和代理对象都要实现同一个接口 public class StacticProxy { public static void main(String[] args) { You you=new You(); new Thread(()-> Syst ...
分类:
其他好文 时间:
2021-01-25 10:57:46
阅读次数:
0
常用dos命令 #盘符切换 #查看当前目录下的所有文件 dir #切换目录 cd (change directory) cd ..#退到上一层目录 cls #清理屏幕 (clear screen) exit #退出终端 ipconfig #查看电脑的ip #打开应用 calc 计算器 mspaint ...
分类:
编程语言 时间:
2021-01-19 12:29:22
阅读次数:
0
数据准备 数据表 CREATE TABLE `teacher`( id INT(10) NOT NULL, `name` VARCHAR(30) DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=INNODB DEFAULT CHARSET=utf8; INSERT I ...
分类:
其他好文 时间:
2021-01-19 12:04:22
阅读次数:
0
【导语】:在深度强化学习第四篇中,讲了Policy Gradient的理论。通过最终推导得到的公式,本文用PyTorch简单实现以下,并且尽可能搞清楚torch.distribution的使用方法。代码参考了LeeDeepRl-Notes中的实现。 1. 复习 \[ \theta \leftarro ...
分类:
其他好文 时间:
2021-01-16 12:16:36
阅读次数:
0
httpclient for windows demo unit FMain; { uses Vcl.Forms, FMain in 'FMain.pas' {FormMain}, Grijjy.Http in '..\..\GrijjyFoundation\Grijjy.Http.pas', Gr ...
package mytest; public class TestInteger { public static void main(String args[]) { Integer a =127; Integer b =127; System.out.println(a==b); a=128; b ...
分类:
其他好文 时间:
2021-01-13 11:22:55
阅读次数:
0
原文链接http://zhhll.icu/2020/05/18/java%E5%9F%BA%E7%A1%80/IO/NIO%E5%9F%BA%E6%9C%AC%E6%93%8D%E4%BD%9C/ NIO 同步非阻塞 阻塞与非阻塞的区别: 阻塞时,在调用结果返回时,当前线程会被挂起,并在得到结果之后 ...
分类:
其他好文 时间:
2021-01-13 11:11:32
阅读次数:
0
package com.androidstudy.uicomponenttest; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; import android.content ...
分类:
其他好文 时间:
2021-01-12 11:26:00
阅读次数:
0