/* 需求:请输出下列的形状 * ** *** **** ***** */ class Demo2_ForFor { public static void main(String[] args) { for (int i = 1;i <= 5 ; i++) { //外循环决定行数 for (int ... ...
分类:
其他好文 时间:
2017-03-09 20:59:15
阅读次数:
220
1 package demo; 2 3 import java.util.Arrays; 4 5 public class Demo02 { 6 public static void main(String[] args) { 7 int[] arr = new int[10]; 8 for(int... ...
分类:
编程语言 时间:
2017-03-08 21:26:29
阅读次数:
183
1 2 3 4 5 6 7 8 9 10 11 12 13 14 Name: 15 16 17 * 20 21 22 23 Emai... ...
分类:
Web程序 时间:
2017-03-08 13:44:35
阅读次数:
180
1、先使用groupadd hadoop 建立hadoop用户组 2、新建用户,useradd -d /usr/hadoop -g hadoop -m hadoop (新建用户hadoop指定用户主目录/usr/hadoop 及所属组hadoop) 3、passwd hadoop 设置hadoop密 ...
分类:
其他好文 时间:
2017-03-08 10:55:46
阅读次数:
152
API中比较 set 和 collection 集合都有一样的方法 * A:Set集合概述及特点 * 通过API查看即可* B:案例演示 * HashSet存储字符串并遍历 * HashSet<String> hs = new HashSet<>(); boolean b1 = hs.add("a" ...
分类:
编程语言 时间:
2017-03-08 00:48:41
阅读次数:
139
首先,关于环信SDK的下载和一些依赖库的添加,在此我就不做详细介绍,(http://www.easemob.com/download/im)附上环信官网文档,可以看一下,上面都可以下载,也有相关配置介绍。 今天主要说一下,环信集成遇到的各种坑,各种问题,有的连文档都不说明的坑。。(主要是讲解完全集成 ...
分类:
移动开发 时间:
2017-03-07 22:30:09
阅读次数:
4796
demo如下: Collection type A collection column is declared using the collection type, followed by another type, such as int or text, in angle brackets. F ...
分类:
编程语言 时间:
2017-03-07 19:24:23
阅读次数:
358
Java中参数传递是传值还是传引用呢?很多人遇到这个问题都会马上给你抛出这个例子:
class Entry{
Integer value;
public Entry(Integer ...
分类:
其他好文 时间:
2017-03-07 18:11:20
阅读次数:
216
上一篇中我们对蓝牙的各个版本的有了一个认识,蓝牙版本的历程及其优劣式介绍。那么接下来咱们就深入一点继续开车进入BLE的进及篇章:蓝牙的搜索,连接,以及读取数据 ...
分类:
移动开发 时间:
2017-03-07 11:44:15
阅读次数:
271
1.Random: 作用:–用于产生一个随机数 使用步骤(和Scanner类似) –导包:import java.util.Random; –创建对象:Random r = new Random(); –获取随机数:int number = r.nextInt(10);//产生的数据在0到10之间, ...
分类:
其他好文 时间:
2017-03-07 08:08:55
阅读次数:
171