命令模式 public interface Command { void execute(); } ? public class CommandA implements Command{ public void execute() { System.out.println("a执行了"); } } ...
分类:
其他好文 时间:
2021-05-24 08:31:58
阅读次数:
0
#include<iostream> #include<cstdlib> using namespace std; #include<set> /* 3.8 set/multiset容器 3.8.1 set基本概念 简介:所有元素都会在插入时自动被排序 本质:set/multiset属于关联式容器, ...
分类:
其他好文 时间:
2021-05-24 06:37:16
阅读次数:
0
new 和 delete 的执行过程 new 的执行过程 通过 operator new 申请内存 调用构造函数(简单类型忽略此步) 返回内存指针 delete 的执行过程 调用析构函数(简单类型忽略此步) 释放内存 using namespace std; class T { public: T( ...
分类:
其他好文 时间:
2021-05-24 05:50:59
阅读次数:
0
进入查看:2021-2022学年学英语报七年级第8期答案外研版基础版 1.novelist [?n?v?l?st] n. 小说家 novel [?n?v(?)l] n. (长篇)小说 2. nursery [?n??s?r?] n. 托儿所 nurse [n??s] n. 护士;保育员 nursin ...
分类:
其他好文 时间:
2021-05-24 02:15:27
阅读次数:
0
参考:C++转换构造函数:将其它类型转换为当前类的类型 (biancheng.net) C++类型转换函数:将当前类的类型转换为其它类型 (biancheng.net) 类型转换函数的语法格式为: operator type(){ //TODO: return data;} operator 是 C ...
分类:
编程语言 时间:
2021-05-24 02:07:31
阅读次数:
0
1.文本编辑介绍 Linux文本处理工具: nano #字符工具,全屏显示 gedit #图形化工具,全屏显示 vi #文本编辑器,centos最小化安装自带 vim #从vi发展来的文本编辑器,有插入模式、命令模式、扩展模式 cat #可查看文本内容 tac #逆向显示文本内容 nl #文本查看, ...
分类:
系统相关 时间:
2021-05-24 02:04:30
阅读次数:
0
接下来我们来看看Java中的异常,想必大家多多少少都会听说过这样一个异常叫做空指针异常,我们来看代码演示: NullPointerException nullPointerException = new NullPointerException("空指针异常"); System.out.printl ...
分类:
编程语言 时间:
2021-05-04 15:26:38
阅读次数:
0
ES5 中处理不定参数(arguments) javascript function sum() { let sum = 0 Array.from(arguments).forEach(function(item) { sum += item }) return sum } console.log( ...
分类:
编程语言 时间:
2021-05-04 15:17:28
阅读次数:
0
pi表示在信息熵部分中有介绍,如下图中介绍 选择最小的那个0.3 #整个c4.5决策树的所有算法: import numpy as np import operator def creatDataSet(): """ outlook-> 0:sunny | 1:overcast | 2:rain t ...
分类:
其他好文 时间:
2021-05-03 12:13:28
阅读次数:
0
文件上传 服务器 package com.shushu.net;?import java.io.*;import java.net.ServerSocket;import java.net.Socket;?public class TcpServerDemo02 { public static vo ...
分类:
Web程序 时间:
2021-04-30 12:20:57
阅读次数:
0