码迷,mamicode.com
首页 >  
搜索关键字:program    ( 9373个结果
Head First C 第三章总结
3 Creating small tools 创建小工具 这一章的内容主要是关于文件的输入与输出的问题.也就是说:怎么能够将文件作为程序的输入,以及如何将文件作为程序的输出. 用一句话总结,就是:Make program work with files. 定义Standard Input & Sta ...
分类:其他好文   时间:2020-01-22 18:32:49    阅读次数:67
java环境 变量,python环境变量
新建环境变量JAVA_HOME: C:\Program Files\Java\jdk1.8.0_121 Path添加: %JAVA_HOME%\bin %JAVA_HOME%\jre\bin C:\Program Files (x86)\Python\Python38-32 C:\Program F ...
分类:编程语言   时间:2020-01-22 11:05:25    阅读次数:77
ebpf bpf_load_program
size_t insns_cnt = sizeof(prog) / sizeof(struct bpf_insn); prog_fd = bpf_load_program(BPF_PROG_TYPE_SOCKET_FILTER, prog, insns_cnt, "GPL", 0, bpf_log_... ...
分类:其他好文   时间:2020-01-21 20:20:07    阅读次数:128
springboot+vue+部署按照及运行指导
1 环境部署 1.1 jdk-8u111-windows-x64 环境变量 JAVA_HOME:C:\Program Files\Java\jdk1.8.0_111 Path新增一行:%JAVA_HOME%\bin 1.2 apache-maven-3.5.0-bin,直接解压到C:\Program ...
分类:编程语言   时间:2020-01-21 13:21:35    阅读次数:105
WinDbg远程调试
1、环境及工具 本地主机 目标主机,可以是虚拟机 调试工具:VS2008、msvsmon.exe(根据目标机系统版本选择X64还是X86,远程调试监视器,一般在安装目录下 C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\Remote ...
分类:数据库   时间:2020-01-19 22:15:37    阅读次数:106
use a synchronization mechanism such as a lock or channel communication to establish a relative ordering.
https://golang.org/ref/mem#tmp_6 Goroutine destruction The exit of a goroutine is not guaranteed to happen before any event in the program. For exampl ...
分类:其他好文   时间:2020-01-19 22:04:51    阅读次数:66
独立性测试
1.1 软件测试的定义 追本溯源,什么是软件测试?先我们看看一些著名的对软件测试的定义。 l Testing is the process of establishing confidence that a program or system does what it is supposed to ...
分类:其他好文   时间:2020-01-19 19:02:58    阅读次数:81
我怎么感觉 ConcurrentDictionary<,> 不是线程安全的喃?
直接上代码 class Program { static readonly ConcurrentDictionary<string, Person> Dic = new ConcurrentDictionary<string, Person>(); static void Main(string[] ...
分类:编程语言   时间:2020-01-18 00:55:45    阅读次数:84
C#的委托案例
C#实现(Delegate)的委托就不多说了,直接上代码,看代码中的注释: namespace Delegate { delegate void DGSayiHi(string name);//声明委托 delegate void DGDo(string name); class Program { ...
分类:Windows程序   时间:2020-01-17 10:07:05    阅读次数:84
Java多线程之线程创建
一、程序、进程与线程的理解: 1、程序(program): 是为完成特定任务、用某种语言编写的一组指令的集合。即指一段静态的代码,静态对象。 2、进程(process): 是程序的一次执行过程, 或是正在运行的一个程序。是一个动态的过程:有它自身的产生、存在和消亡的过程,即生命周期。(1)例如:运行 ...
分类:编程语言   时间:2020-01-16 22:06:38    阅读次数:87
9373条   上一页 1 ... 60 61 62 63 64 ... 938 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!