好物分享
-
-
ashes of time
I must not fear, fear is the mind-killer Fear is the little-death that brings total obliteration I Will face my fear, I will permit it to pass over …… -
-
参数传递之“值传递和址传递的统一理解”(c++版)
一,案例 #include using namespace std; void GetMemory(int *ptr, int size) { ptr = new int[size]; } int main() { int *ptr = NULL; cout -
[MRCTF2020]你传你呢 1
知识点:.htaccess和.user.ini的区别 本题只能用.htaccess,因为.user.ini被过滤了。 目录 知识.htaccess.user.ini区别 步骤 知识 .htaccess 百度.htaccess…… -
Socket编程流程梳理
Socket编程流程 服务端:socket—>bind—>listen—>accept—>send/recv—>closesocket 客户端:socket—>bind(可选)—>connect—>send/recv---->closesocket 创建Socke…… -
笔记 | numpy-03.数组属性
#%% """ NumPy 数组的维数称为秩 (rank), 秩就是轴的数量, 即数组的维度, 一维(秩:1),二维(秩:2), 以此类推.. NumPy 中 每一个线性的数组称为是一个轴(axis),…… -
【无标题】
JDK8新增的Map的computeIfAbsent介绍 文章目录 前言一、sonar扫描有问题的代码二、使用computeIfAbsent方法三、源码 前言 今天在sonar扫描代码的时候,报了…… -
如何用一个两重循环实现行和列的检查(井字棋)
#include int main() { const int size = 3; int board[size][size]; int i, j; int numOfX1; int numOfO1; // 添加两个变量,判断…… -

