上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页
摘要: public class Person { private String name = "小张"; public void say(String c) { System.out.println(c); } public void say() { System.out.println("hello," 阅读全文
posted @ 2022-10-03 10:57 xl4ng 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.静态代理 package proxy; public interface Greeting { void sayHello(String name); } package proxy; public class GreetingImpl implements Greeting { @Overri 阅读全文
posted @ 2022-10-03 10:23 xl4ng 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1.获取类信息 class Student { static { System.out.println("加载Student类"); } public Student() { System.out.println("Construct Student"); } } public class Clas 阅读全文
posted @ 2022-10-03 10:19 xl4ng 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 创建Cat对象 package com.reflection.domain; public class Cat { private String name = "小喵"; public void hi() { System.out.println("hi " + name); } public vo 阅读全文
posted @ 2022-09-28 21:20 xl4ng 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 新建Maven工程 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan 阅读全文
posted @ 2022-08-28 21:32 xl4ng 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 一、选举根桥RB 比较BID,先比优先级(默认32768,4096的倍数),优先级相同,再比48位Mac地址,越小越好。 二、选举根端口RP(在非根桥上选举,每个设备只有一个根端口) 比较入方向RPC,越小越好; 比较上行设备的BID; 比较上线设备接口对端接口的PID(优先级默认128,结合端口号 阅读全文
posted @ 2022-05-03 17:08 xl4ng 阅读(256) 评论(0) 推荐(0) 编辑
摘要: VLAN路由-单臂路由 [SW]vlan batch 10 20 [SW-GigabitEthernet0/0/1]port link-type access [SW-GigabitEthernet0/0/1]port default vlan 10 [SW-GigabitEthernet0/0/2 阅读全文
posted @ 2022-05-03 10:42 xl4ng 阅读(138) 评论(0) 推荐(0) 编辑
摘要: # 创建VLAN10 [SW1]vlan 10 # 创建VLAN20 [SW1]vlan 20 # 查看VLAN配置 [SW1]dis vlan # 修改g0/0/1接口类型 [SW1-GigabitEthernet0/0/1]port link-type access # 配置g0/0/1接口的默 阅读全文
posted @ 2022-05-02 23:00 xl4ng 阅读(172) 评论(0) 推荐(0) 编辑
摘要: # 给g0/0/0配地址 [R1-GigabitEthernet0/0/0]ip address 192.168.1.1 24 # 创建ospf10进程 [R1]ospf 10 # 创建area-0.0.0.0区域 [R1-ospf-10]a 0 # 在区域下声明 [R1-ospf-10-area- 阅读全文
posted @ 2022-05-01 21:30 xl4ng 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1、设置AR-LT和AR-YD路由器的环回口地址 int LoopBack0 ip address 123.1.1.1 24 2、配置接口ip [AR-GW]int g0/0/0 [AR-GW-GigabitEthernet0/0/0]ip address 56.1.1.1 24 [AR-GW]in 阅读全文
posted @ 2022-04-30 22:20 xl4ng 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页