Singleton: Make sure that there can be "only one instance" of a Class The Singleton class only provide a "static method" to get its object for example ...
分类:
其他好文 时间:
2020-06-26 20:37:18
阅读次数:
44
1. Run a few randomly-generated problemswith just two jobs and two queues; compute the MLFQ execution trace for each. Make your life easier by limitin ...
分类:
其他好文 时间:
2020-06-26 16:17:45
阅读次数:
78
设计上有一个这种文字滚动到屏幕外的时候,滚动到边缘进出场需要添加渐变透明度的需求 ,这个以前没有做过于是网上找了找 iOS文字颜色渐变透明 可惜它这个只支持半边的渐变,方向有上下或者左右啊,已经不能满足需求了,它的原理是设置渐变的maskLayer 于是,照猫画虎,写了两个渐变layer当成subL ...
分类:
移动开发 时间:
2020-06-26 12:48:05
阅读次数:
193
1.首先定义两个路由 Route::get('/{name}','Conterller@index'); Route::get('/routes','Conterller@routes'); 2.创建中间件php artisan make:middleware checkName 创建中间件目录如下 ...
分类:
其他好文 时间:
2020-06-26 12:41:12
阅读次数:
72
就是线性代数的初等行变化: 倍加。 倍乘。 交换行。 #include <bits/stdc++.h> #define mp make_pair #define pb push_back using namespace std; typedef long long ll; typedef pair< ...
分类:
其他好文 时间:
2020-06-25 21:24:54
阅读次数:
60
第一种:在项目目录写一个CMakeLists.txt cmake_minimum_required (VERSION 3.8) project ("rtsp") 该命令会查找指定目录下的所有源文件,然后将结果存进指定变量名。 #aux_source_directory(<dir> <variable ...
分类:
其他好文 时间:
2020-06-25 10:10:46
阅读次数:
50
安装erlang 由于rabbitmq是基于erlang语言开发的,所以必须先安装erlang。 yum -y install gcc glibc-devel make ncurses-devel openssl-devel xmlto perl wget gtk2-devel binutils-d ...
分类:
其他好文 时间:
2020-06-24 11:58:56
阅读次数:
55
查看当前编译 nginx -V 增加 --with-http_stub_status_module 监控nginx状态 进入我们之前的解压包路径 ./configure --prefix=/data/nginx --with-stream --with-http_stub_status_module ...
分类:
其他好文 时间:
2020-06-24 11:48:29
阅读次数:
61
环境准备 本次只是安装实验,如想了解 集群原理 引申阅读:redis-cluster原理 https://www.cnblogs.com/williamjie/p/9505180.html https://www.cnblogs.com/mengchunchen/p/10059436.html ht ...
分类:
其他好文 时间:
2020-06-24 00:21:43
阅读次数:
59
using System; namespace ConsoleTese { class Program { public delegate int dele(int a, int b); static void Main(string[] args) { ProductFactory product ...