反射(reflection)是指在运行时,动态获取程序结构信息(元信息)的一种能力,是静态类型语言都支持的一种特性,如Java, golang等。这里主要详细介绍golang reflection相关知识类型与接口(Types and interfaces)type MyInt int
var i int
var j MyInti 为i
分类:
其他好文 时间:
2018-04-20 16:13:51
阅读次数:
177
1.打开终端输入: sudo vi /etc/network/interfaces 2.进入编辑页面 改一处,添加5行内容,如下图: 3.修改好后esc :wq进行保存 4.输入: sudo /etc/init.d/networking restart 进行重启服务,显示OK,证明配置正确。 5.第 ...
分类:
系统相关 时间:
2018-04-11 21:41:08
阅读次数:
1427
故障现象:Juniper QFX5100-24Q通过监控发现et-0/0/2上出现Error包。通过命令:show interfaces et-0/0/2 extensive,显示input error以及CRC错误。状态显示:Physical interface: et-0/0/2, Enabled, Physical link is Up Interface index: 942,
分类:
其他好文 时间:
2018-03-30 23:11:09
阅读次数:
355
Introduce安装虚拟机无法DHCP获取地址,搜了点资料设置成功,记下来以后好找文档。设置静态IPvi/etc/network/interfaces#Theprimarynetworkinterfaceautoeth0#表示让网卡开机自动挂载eth0ifaceeth0inetstaticaddress192.168.2.1gateway192.168.2.254netmask255.255.2
分类:
系统相关 时间:
2018-03-30 17:27:43
阅读次数:
209
修改 /etc/network/interfaces网卡配置文件 使用“/etc/init.d/networking
restart”命令使用网卡配置文件内容生效Ip add show 查看网卡信息Address 172.16.100.22 ip地址Netmask 255.255.255.0 子网掩码Ga
分类:
其他好文 时间:
2018-03-29 17:25:12
阅读次数:
215
ubuntu16.04设置静态ip方法: $ sudo vim /etc/network/interfaces auto enp7s0 # 使用的网络接口,之前查询接口是为了这里iface enp7s0 inet static # enp7s0这个接口,使用静态ip设置address 10.0.20 ...
分类:
系统相关 时间:
2018-03-28 18:45:42
阅读次数:
518
今天在弄一个邮件通知的时候,突然发现连最基本的邮件都发不出去,报错了[root@xhk~]#echo‘标题‘|mail-s"内容"xxxxxxx@qq.com出现异常:[root@xhk~]#send-mail:fatal:parameterinet_interfaces:nolocalinterfacefoundfor::1查看centos中的postfix日
分类:
其他好文 时间:
2018-03-24 11:31:54
阅读次数:
143
接口可使用的修饰符如下: The modifier static pertains only to member interfaces (§8.5.1, §9.5), not to top level interfaces (§7.6). The access modifiers protected ...
分类:
其他好文 时间:
2018-03-22 12:36:13
阅读次数:
335
A Range Module is a module that tracks ranges of numbers. Your task is to design and implement the following interfaces in an efficient manner. addRan ...
分类:
其他好文 时间:
2018-03-17 00:42:36
阅读次数:
354
3.5.2 链接表接口 链接表可以看成是一组结点序列以及基于结点进行操作的线性结果的抽象,或则说是对链表的抽象。 链接表的接口: 1 package com.datastructure.chapter03.interfaces; 2 3 import com.datastructure.chapte ...
分类:
其他好文 时间:
2018-03-16 00:13:37
阅读次数:
194