实验1:Manage_IOS 实验目的 掌握Cisco IOS命令行的基本操作 掌握设备的常用基本命令 设备Console信息抓取和识别 需求: 配置设备主机名,设置时区及系统时间 配置“新手三条”:关闭域名解析、Console永不超时、Console权限 创建MOTD 设置和取消密码:Consol ...
分类:
移动开发 时间:
2021-01-07 11:52:55
阅读次数:
0
今天看到代码@加一个函数名不知道是什么意思,所以来记录一下 这是es6的一个新特性 类的装饰器 类的装饰 装饰器可以用来装饰整个类。 @testable class MyTestableClass { // ... } function testable(target) { target.isTes ...
分类:
其他好文 时间:
2021-01-07 11:52:31
阅读次数:
0
贴靠窗口:Win +左/右> Win +上/下>窗口可以变为1/4大小放置在屏幕4个角落 ? 切换窗口:Alt + Tab(不是新的,但任务切换界面改进) ? 任务视图:Win + Tab(松开键盘界面不会消失) ? 创建新的虚拟桌面:Win + Ctrl + D ? 关闭当前虚拟桌面:Win + ...
☆☆☆☆思路:本题是二维的0-1背包问题,把总共的 0 和 1 的个数视为背包的容量 class Solution { public int findMaxForm(String[] strs, int m, int n) { /*int len = strs.length; // dp[i][j] ...
分类:
其他好文 时间:
2021-01-06 12:30:29
阅读次数:
0
转:https://www.cnblogs.com/hama1993/p/10400265.html 一、基本使用 我们继续来看之前写的例子: private static ThreadLocal tl = new ThreadLocal<>(); public static void main(S ...
分类:
其他好文 时间:
2021-01-06 12:29:40
阅读次数:
0
# step1 设置变量 SET @NAME = "测试测试"; # step2 sql语句加入预处理(要使用变量的地方 用“?”表示) PREPARE SQL1 FROM 'SELECT * FROM user WHERE name = ?'; # step3 执行(SQL1:表示要执行的SQL语 ...
分类:
数据库 时间:
2021-01-06 12:18:21
阅读次数:
0
import sys #第1:print(6/0) #直接运行该命令,出现异常,程序终止 #异常提示: '''Traceback (most recent call last): File "F:/file2.py", line 2, in <module> print(6/0) ZeroDivis ...
分类:
编程语言 时间:
2021-01-06 12:10:07
阅读次数:
0
点击按钮样式切换 <!DOCTYPE html> <html lang="ch-zn"> <head> <meta charset="UTF-8"> <link rel="" href=""> <meta name="viewport" content="width=device-width, in ...
分类:
其他好文 时间:
2021-01-06 11:53:39
阅读次数:
0
题目 1 class Solution { 2 public: 3 4 bool isSymmetric(TreeNode* root) { 5 return check(root,root); 6 } 7 bool check(TreeNode* p,TreeNode* q) { 8 if(!p ...
分类:
其他好文 时间:
2021-01-05 11:37:37
阅读次数:
0
问题: 给定一个计量括号数量的数字n,求所有的括号组合可能序列。 Example 1: Input: n = 3 Output: ["((()))","(()())","(())()","()(())","()()()"] Example 2: Input: n = 1 Output: ["()"] ...
分类:
其他好文 时间:
2021-01-05 11:32:45
阅读次数:
0