文章内容来源于Programming Hub的学习记录,本人整理添加了中文翻译,如有侵权,联系本人删除 Variables C语言中的变量 Let's extend our mainfunction from the first topic. What if we want to print the ...
分类:
编程语言 时间:
2020-07-28 22:40:48
阅读次数:
82
Nump库的基本使用 库的导入 PyCharm file - Setting - Project interpreter - + - (Searh what you need) - Install Package 多维数组 import numpy as np a = np.array([[1, 2 ...
分类:
其他好文 时间:
2020-07-26 18:58:40
阅读次数:
65
4.3.2 等待/通知机制 一个线程修改了一个对象的值,而另一个线程感知到了变化,然后进行相应的操作,整个过程开始于一个线程,而最终执行又是另一个线程。前者是生产者,后者就是消费者,这种模式隔离了“做什么”(what)和“怎么做”(How),在功能层面上实现了解耦,体系结构上具备了良好的伸缩性,但是 ...
分类:
编程语言 时间:
2020-07-25 23:37:56
阅读次数:
68
Comments 注释简介 Let's take a quick break from programming and talk about comments. Comments help programmers understand what exactly the computer progra ...
分类:
其他好文 时间:
2020-07-24 09:19:32
阅读次数:
81
一定要看下函数前的注释, 需要在使用的页面定义【needCheckFlag】data属性 一定要看下函数前的注释, 需要在使用的页面定义【needCheckFlag】data属性 一定要看下函数前的注释, 需要在使用的页面定义【needCheckFlag】data属性 /** * what for: ...
分类:
其他好文 时间:
2020-07-23 15:41:50
阅读次数:
73
C语言简介 C is a programming language that lets us give a computer very specifio commands. C语言是一种编程语言,它让我们可以给计算机非常特殊的命令。 C was invented in 1972. It's one ...
分类:
其他好文 时间:
2020-07-23 09:17:28
阅读次数:
69
ReactJs as a JavaScript library created by Facebook that lets us build dynamic user interfaces. What this dynamic user interface even means is that we ...
分类:
Web程序 时间:
2020-07-21 09:48:32
阅读次数:
76
Penetration Test - Planning and Scoping(6) LEGAL CONCEPTS Statement of Work(SOW) Clearly states what tasks are to be accomplished Master Service Agree ...
分类:
Web程序 时间:
2020-07-21 01:05:18
阅读次数:
99
基本语法 完整版本的箭头函数声明包括: 一对带有参数枚举的括号 (param1, param2) 后面跟随箭头 => 以函数体 {FunctionBody} 结尾 典型的箭头函数如下所示: const sayMessage = (what, who) => { return `${what}, ${ ...
分类:
其他好文 时间:
2020-07-21 00:56:55
阅读次数:
69
Penetration Test - Planning and Scoping(2) TARGET AUDIENCE AND ROE Know your target audience Who is sponsoring the pen test? What is the purpose of th ...
分类:
Web程序 时间:
2020-07-19 23:58:22
阅读次数:
117