ylbtech-专业词汇-计算机-面向对象技术-OOP:对象 1.返回顶部 1、 面向对象 基本概念 面向对象(ObjectOriented,OO)是当前计算机界关心的重点,它是90年代软件开发方法的主流。面向对象的概念和应用已超越了程序设计和软件开发,扩展到很宽的范围。如数据库系统、交互式界面、应 ...
分类:
其他好文 时间:
2020-07-30 14:51:39
阅读次数:
91
在 Windows 10 上安装 PostgreSQL 时出错:Warning:Problem running post-install step. Installation may not complete correctly Failed to start the database server ...
分类:
数据库 时间:
2020-07-30 01:47:58
阅读次数:
114
接续昨天的问题: json 转换 xml {"jylsh":null,"testtimes":null,"license":null,"licensetype":0,"Licensecode":null,"Vehicletype":null,"vehiclemodel":null,"cpmc":"8 ...
分类:
Web程序 时间:
2020-07-29 21:24:33
阅读次数:
82
1.前言 在网页设计中,除了serif, sans-serif 等font family,如果想加入自己的字体,怎么办?答案就是在css中加入 @font-face 属性。下面简述其步骤。 2.步骤 (1)找到某字体: 从网上找到两个字体,放入a 文件夹下,命名为'b.otf'。 (2)在css中加 ...
分类:
Web程序 时间:
2020-07-29 19:26:50
阅读次数:
97
一、将本地代码提交到远程仓库 【初始将文件修改上传到远程仓库】 初始化: git init 添加到暂存区: git add . 提交到仓库: git commit -m 'first commit' 关联到远程仓库: git remote add origin 远程仓库地址 获取远程仓库与本地仓库同 ...
分类:
其他好文 时间:
2020-07-29 12:40:54
阅读次数:
63
1、实现思想 2、实现代码 1 #include <stdio.h> 2 void bulubulu_sort(int *array, int len) 3 { 4 int temp; 5 for (int i = 0; i < len - 1; i++) 6 { 7 for (int j = 0; ...
分类:
编程语言 时间:
2020-07-29 00:47:19
阅读次数:
100
1.存储的一些概念和术语 SCSI:小型计算机系统接口(Small Computer System Interface) FC:光纤通道(Fibre Channel) DAS:直连式存储(Direct Attached Storage) NAS:网络接入存储(Network At tached St ...
分类:
其他好文 时间:
2020-07-28 22:54:12
阅读次数:
110
当发布的程序有引用其它dll, 又只想发布一个exe时就需要把dll打包到exe,
当然有多种方法可以打包, 比如微软的ILMerge,混淆器附带的打包...
用代码打包的实现方式也有很好,本文只是其中一种实现方式,不需要释放文件! ...
先看再点赞,给自己一点思考的时间,微信搜索【沉默王二】关注这个靠才华苟且的程序员。本文 GitHub github.com/itwanger 已收录,里面还有一线大厂整理的面试题,以及我的系列文章。 Immutable List,顾名思义,就是,啥,不明白 Immutable 是什么意思?一成不变的 ...
分类:
其他好文 时间:
2020-07-27 17:49:59
阅读次数:
80
function getBase64 (file) { return new Promise(function (resolve, reject) { let reader = new FileReader() let imgResult = '' reader.readAsDataURL(file ...
分类:
其他好文 时间:
2020-07-27 15:52:09
阅读次数:
171