题目: Jesus, what a great movie! Thousands of people are rushing to the cinema. However, this is really a tuff time for Joe who sells the film tickets. ...
分类:
其他好文 时间:
2020-06-24 19:34:23
阅读次数:
52
OpenStack Queens版本的 All-in-one 部署过程
分类:
其他好文 时间:
2020-06-20 10:56:23
阅读次数:
57
平时常用的工具类网页、SPA 应用(Single Page Application),还在打开浏览器、再找书签么? Chrome 可以帮您安装快捷图标,直接双击打开就好了。 Chrome Apps 打开 Chrome 浏览器,输入 chrome://apps ,即可打开应用页面: 还可以选择在系统应 ...
分类:
移动开发 时间:
2020-06-19 22:44:08
阅读次数:
89
1)单一职责原则(Single responsibility principle,简称:SRP) 一个类只负责一个功能领域中的相应职责,或者可以定义为:就一个类而言,应该只 有一个引起它变化的原因。它规定一个类应该只有一个发生变化的原因。 2)里氏代换原则(Liskov Substitution P ...
分类:
其他好文 时间:
2020-06-19 21:14:52
阅读次数:
72
单用户改为多用户执行SQL: ` USE master; GO declare @kid varchar(8000) set @kid='' select @kid=@kid+' kill '+cast(spid as varchar(8)) from master..sysprocesses wh ...
分类:
数据库 时间:
2020-06-19 16:36:15
阅读次数:
126
单例文件内容如下 .h @interface Single:NSObject @property(nonatomic, copy)NSURL *value; +(instancetype)sharedInstance; @end .m @implementation Single +(instanc ...
分类:
移动开发 时间:
2020-06-19 12:07:53
阅读次数:
87
一、Elasticsearch 搭建 这里三个都选用 6.4.2版本 docker pull elasticsearch:6.4.2 docker run -d --name es -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" e ...
分类:
其他好文 时间:
2020-06-18 14:39:03
阅读次数:
60
默认构造函数 声明基本构造函数的语法就是声明一个与类同名的方法,但该方法没有返回类型: public class MyClass { public MyClass() { } // rest of class definition } 如果没有提供任何构造函数,编译器会在后台生成一个默认的构造函数。 ...
impala中拼接字符串的函数: concat(string a, string b...) Purpose: Returns a single string representing all the argument values joined together. Return type: str ...
分类:
其他好文 时间:
2020-06-17 20:04:44
阅读次数:
200
问题背景 最近装个centos 7.6的环境,其中,基础环境包括,redis、nginx、mongodb、fastdfs、mysql等,其中,自启动使用的是systemctl,其他几个组件,都没啥问题,唯独,这个mongodb,是死活启动不了。 但是,我这里说的,不是启动不了,如果直接在shell里 ...
分类:
数据库 时间:
2020-06-16 18:52:31
阅读次数:
84