1 /// 2 /// 3 public void Student(Student sd) 4 { 5 List<SqlParameter> sqlList = new List<SqlParameter>(); 6 sqlList.Clear(); 7 Hashtable ht = new Has ...
分类:
数据库 时间:
2020-06-08 19:02:37
阅读次数:
60
#####1、交换机基本配置 以太网交换机工作在OSI参考模型的数据链路层,主要功能是提供网络数据包优化和转发 交换机的连接方式有级联和堆叠 终端访问安全配置: 配置交换机ip,交换机所有端口默认属于vlan 1 interface vlan 1 ip address 192.168.1.4 255 ...
分类:
系统相关 时间:
2020-06-08 19:00:32
阅读次数:
99
ARP(Address Resolution Protocol)地址解析协议,根据IP地址获取物理地址的一个TCP/IP协议。 由于OSI模型把网络分为七层,IP地址在OSI模型第三层,MAC地址在第二层,彼此不直接通信。在通过以太网发送IP数据包时,需要封装第三层(32位IP地址)和第二层(48位 ...
分类:
其他好文 时间:
2020-06-08 16:11:16
阅读次数:
243
一、简介 1. MLD简介 MLD · Multicast Listener Discovery Protocol · 组播侦听者发现协议 功能 · 在终端主机和与其直接相邻的组播路由器之间建立/维护组播组成员关系 标准 · RFC2710: MLD, 1999.10 · RFC3810: MLDv ...
分类:
其他好文 时间:
2020-06-08 12:58:36
阅读次数:
70
Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop o ...
分类:
其他好文 时间:
2020-06-08 00:29:09
阅读次数:
53
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'. The wheels can rota ...
分类:
其他好文 时间:
2020-06-07 13:04:24
阅读次数:
50
基本特性 1、jdk 1.5之后才引入的。 2、用来说明程序的。(注释是给程序员看的,注解就是给电脑看的) java注解的作用分类 1、编写文档:通过代码标识的注解生成文档。【生成doc文档】 2、代码分析:通过代码标识的注解对代码进行分析。【使用反射】 3、编译检查:通过代码标识的注解让编译器能够 ...
分类:
编程语言 时间:
2020-06-06 21:53:27
阅读次数:
75
保存用户的登录日志该怎么做? 创建 用户登录日志数据库表 在 MVC 中创建相应的模型 class LoginLog(models.Model): """登录日志""" # 日志ID logid = models.BigAutoField(primary_key=True) # 登录的用户 user ...
分类:
其他好文 时间:
2020-06-06 18:44:49
阅读次数:
61
nohup java -jar -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8307 app.jar > null & 连接远程服务器,首先选一个没有被占用的端口号,比如8999这个端口号,没有被占用,将addre ...
分类:
其他好文 时间:
2020-06-06 17:02:51
阅读次数:
249