在老毛子的文章里看到的获取本地ip的方法。实现蛮简单。没找到多少关于idStack相关的说明,有空再去外网溜达看看。先记录下。 program 获取本地ip; {$APPTYPE CONSOLE} {$R *.res} uses IdStack; function GetIPLocal: strin ...
分类:
其他好文 时间:
2021-02-15 12:33:49
阅读次数:
0
abstract class Vehicle { public abstract void Drive(); } class Car : Vehicle { public override void Drive() { Console.WriteLine("Car is driving..."); ...
equals和hashCode详解 http://www.cnblogs.com/Qian123/p/5703507.html 阅读目录 equals()方法详解 hashcode() 方法详解 Hashset、Hashmap、Hashtable与hashcode()和equals()的密切关系 j ...
分类:
其他好文 时间:
2021-02-09 12:25:29
阅读次数:
0
一、版本说明嵌入式Linux 下面的reboot命令看似简单,但出问题时定位起来发现别有洞天。下面就按在shell下执行reboot命令之后程序的执行过程进行解析。Busybox:1.23.2 ——制作跟文件系统,/sbin/reboot程序的由来Libc:2.6.1 ——标准C库Linux ker ...
分类:
系统相关 时间:
2021-02-04 11:43:18
阅读次数:
0
怎么设置电脑定时开关机?其实,我们可以通过一些三方软件达到定时开关机的效果,不过小编今天要给大家分享一个更加简便的方法,现在就一起来往下看看具体的操作方法吧。 有很多时候,我们都会需要将电脑设置成定时关机,比方说大半夜的在下载一下大型游戏之类的,这些长时间任务的时候,我们总不能一直呆在电脑旁吧,那么 ...
一般情况下Json数据格式都是如下的字符串: { "programmers": [ { "firstName": "Brett", "lastName":"McLaughlin", "email": "brett@newInstance.com" }, { "firstName": "Jason", ...
分类:
Web程序 时间:
2021-01-30 11:45:36
阅读次数:
0
卸载mysql的时候,需要删除C:\ProgramData\MySQL的文件夹以及C:\Program Files (x86)\MySQL的东西,这样删除干净后,下次重新安装就会十分顺利。 ...
分类:
数据库 时间:
2021-01-28 11:38:25
阅读次数:
0
OC对象本质是C++的结构体:因为对象涉及到不同类型,只有结构体能存储不同的结构体 OC对象 OC对象的本质 将OC代码转换成为C\C++代码 OC中的test方法会转化成c语言的方法 - (void)test { } 其实是系统会传递两个参数过来 // self 方法调用者 // _cmd 方法名 ...
分类:
其他好文 时间:
2021-01-27 13:28:11
阅读次数:
0
Integer Inquiry poj1503 题目 Problem Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of power ...
分类:
其他好文 时间:
2021-01-27 13:01:44
阅读次数:
0
vue 绑定style :style="{'padding-left':index==0?'22px':''} 1 <label v-for="(item,keyName,index) in ENUM.transportType" :style="{'padding-left':index==0?' ...
分类:
其他好文 时间:
2021-01-22 11:43:38
阅读次数:
0