(1)条件概率公式 设A,B是两个事件,且P(B)>0,则在事件B发生的条件下,事件A发生的条件概率(conditional probability)为: P(A|B)=P(AB)/P(B) (2)乘法公式 1.由条件概率公式得: P(AB)=P(A|B)P(B)=P(B|A)P(A) 上式即为乘法 ...
分类:
其他好文 时间:
2018-12-14 19:58:58
阅读次数:
173
1.外部配置加载顺序 SpringBoot也可以从以下位置加载配置; 优先级从高到低 高优先级的配置覆盖低优先级的配置,所有的配置会形成互补配置 1.命令行参数 所有的配置都可以在命令行上进行指定 先打包在进行测试 指定访问的路径 多个配置用空格分开; --配置项=值 -- 由jar包外向jar包内 ...
分类:
编程语言 时间:
2018-12-14 19:28:01
阅读次数:
303
%操作符(字符串格式化,string formatting),说明如下: %[(name)][flags][width].[precision]typecode (name)为命名 flags可以有+,-,' '或0。+表示右对齐。-表示左对齐。' '为一个空格,表示在正数的左侧填充一个空格,从而与 ...
分类:
其他好文 时间:
2018-12-08 23:51:57
阅读次数:
236
robot framework 操作Excel需要安装库 ExcelLibrary 将ExcelLibrary 导入到robot framework中 使用例子: 遇到问题: FAIL : NotImplementedError: formatting_info=True not yet imple ...
分类:
其他好文 时间:
2018-12-05 12:09:02
阅读次数:
409
1、最简单的注解驱动开发实例: 2、@ComponentScan注解 自动扫描 @Controller @Service @Repository @Component 3、@Scope(value = "singleton") 4@import(快速给容器导入一个组件) 5、@conditional ...
分类:
编程语言 时间:
2018-11-21 12:24:56
阅读次数:
138
用户界面套包DevExpress v18.1日前正式发布,本站将以连载的形式为大家介绍各版本新增内容。本文将介绍了CodeRush for Visual Studio v18.1 的新功能,快来下载试用新版本!点击下载>> Code Formatting Simple Wrap 新的'Simple ...
分类:
其他好文 时间:
2018-11-08 12:18:06
阅读次数:
218
Conditionals Conditional expressions allow your programs to make decisions and take different forks in the road,depending on the value of variables or ...
分类:
其他好文 时间:
2018-11-08 01:16:50
阅读次数:
173
Single Image Dehazing via Conditional Generative Adversarial Network Runde Li? Jinshan Pan? Zechao Li Jinhui Tang? School of Computer Science and Engi ...
分类:
Web程序 时间:
2018-11-07 23:14:06
阅读次数:
876
什么是FC? Formatting Context,格式化上下文,指页面中一个渲染区域,拥有一套渲染规则,它决定了其子元素如何定位,以及与其他元素的相互关系和作用。 BFC 什么是BFC Block Formatting Context,块级格式化上下文,一个独立的块级渲染区域,该区域拥有一套渲染规 ...
分类:
Web程序 时间:
2018-11-05 20:52:46
阅读次数:
248
参考资料:https://docs.python.org/3.5/library/stdtypes.html#old-string-formatting 实例 可以看到用这种类似于c语言中的printf函数,实现了字符串拼接,这个在实际应用中很常见,比如打日志,比如输出一段完整的内容,其中包含一些变 ...
分类:
编程语言 时间:
2018-11-05 00:02:08
阅读次数:
150