码迷,mamicode.com
首页 >  
搜索关键字:open close principle    ( 32684个结果
mfc判断目录是否为空
BOOL IsFolderEmpty(string path) { string str = path + "\\*.*"; CFileFind ff; BOOL bFound; bFound = ff.FindFile(str.c_str()); while (bFound) { bFound = ...
分类:编程语言   时间:2021-06-19 18:41:36    阅读次数:0
hashCode()的一些解释
在学习hashCode()时候看到了几句不理解的话,现在终于搞懂了。 参考文章:https://www.cnblogs.com/skywang12345/p/3324958.html 1. 若要判断两个对象是否相等,除了要覆盖equals()之外,也要覆盖hashCode()函数。否则,equals ...
分类:其他好文   时间:2021-06-18 20:09:38    阅读次数:0
ArrayList源码解读
ArrayList的核心成员属性 public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable { private static ...
分类:其他好文   时间:2021-06-18 19:30:43    阅读次数:0
[GWCTF 2019]枯燥的抽奖
[GWCTF 2019]枯燥的抽奖 知识点: 种子爆破 https://www.openwall.com/php_mt_seed/ PHP的mt_rand函数作为一个随机数生成工具在程序中被广泛使用,但是我们不难发现它生成的随机数不是真正的随机数而是伪随机。既然是伪随机就有可能利用。 安装 php_ ...
分类:其他好文   时间:2021-06-18 18:57:56    阅读次数:0
Address 2 OpenCV errors (raise.c and GTK) by reinstalling and rebuilding
error 1: Unable to open 'raise.c': Unable to read file '/build/glibc-S9d2JN/glibc-2.27/sysdeps/unix/sysv/linux/raise.c' (Error: Unable to resolve non- ...
分类:其他好文   时间:2021-06-18 18:49:18    阅读次数:0
实验七
实验任务三 1.正确输出,且生成了file3.dat 2.是正确的,且直观可读 实验任务四 1.正确输出,生成了file4.dat,且用记事本打开直观可读 2. #include <stdio.h> #include <stdlib.h> typedef struct student{ int nu ...
分类:其他好文   时间:2021-06-17 16:34:46    阅读次数:0
pymysql查询,返回字典格式。
使用:pymysql.cursors.DictCursor 直接上代码 import pymysql db = pymysql.connect(host = "host", user = "user", password = "password", database = "database") cu ...
分类:数据库   时间:2021-06-16 18:09:26    阅读次数:0
TcpIp
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net.Sockets; using Sy ...
分类:其他好文   时间:2021-06-16 18:02:41    阅读次数:0
Docker入门
1、docker介绍 详情参见:https://www.cnblogs.com/xiaoyuanqujing/p/11839932.html 0 各种软件用什么语言写的 zabbix(监控软件):php ansible(批量管理主机,执行命令,无angent):python # angent客户端 ...
分类:其他好文   时间:2021-06-16 17:31:04    阅读次数:0
《T.0002》
Apache Flink Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities. Learn more about Flin ...
分类:其他好文   时间:2021-06-15 18:01:00    阅读次数:0
32684条   上一页 1 ... 6 7 8 9 10 ... 3269 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!