1 CopyTable 工具 用法: CopyTable is a utility that can copy part or of all of a table, either to the same cluster or another cluster. The target table mus ...
分类:
其他好文 时间:
2016-10-31 18:27:40
阅读次数:
329
While循环: while(Boolean_expression){ //statements } 在执行时,如果布尔表达式的结果为真,则循环中的动作将被执行,这将继续下去,只要该表达式的结果为真 do...while循环 do{ //statements }while(Boolean_expre ...
分类:
编程语言 时间:
2016-10-31 16:40:42
阅读次数:
145
在建立分类模型时,交叉验证(Cross Validation)简称为CV,CV是用来验证分类器的性能。它的主体思想是将原始数据进行分组,一部分作为训练集,一部分作为验证集。利用训练集训练出模型,利用验证集来测试模型,以评估分类模型的性能。 训练数据上的误差叫做训练误差,它对算法模型的评价过于乐观。利 ...
分类:
其他好文 时间:
2016-10-31 16:34:57
阅读次数:
285
mysql整型bigint、int、mediumint、smallint 和 tinyint的语法介绍,如下: 1、bigint 从 -2^63 (-9223372036854775808) 到 2^63-1 (9223372036854775807) 的整型数据(所有数字),无符号的范围是0到 1 ...
分类:
数据库 时间:
2016-10-31 16:15:19
阅读次数:
314
上节回顾:RabbitMQ几种模式:
平均分发
perfetch =1
durable队列持久化,deliver_mode = 2 消息持久化
一对多广播,exchanage
fanout
dire...
分类:
数据库 时间:
2016-10-31 14:10:43
阅读次数:
329
<!--大小--> width:宽度 height:高度 <!--背景与前景--> 背景图片的位置 <!--字体--> 超链接的样式: 按钮效果: 边距 间距:margin与padding ...
分类:
Web程序 时间:
2016-10-31 11:00:01
阅读次数:
260
一:随机数(seed): package Demo; import javax.swing.JOptionPane; import java.util.Scanner; public class Seed { public static void main(String[]args) { Strin ...
分类:
其他好文 时间:
2016-10-31 00:06:05
阅读次数:
247