题目描述 一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 class Solution {public: int jumpFloorII(int number) { int jumpFlo=1; while(--number) { ju ...
分类:
其他好文 时间:
2020-07-22 11:15:40
阅读次数:
56
案例一: public class A{ //static int number = 0; int number = 0; public A(){ number++; System.out.println("数字:"+number); } } public class Test{ public st ...
分类:
其他好文 时间:
2020-07-22 01:50:37
阅读次数:
72
过滤器分为全局过滤器和局部过滤器 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <div>{{msg}}</div> ...
分类:
其他好文 时间:
2020-07-22 01:42:18
阅读次数:
57
1、概述 Number类是所有数值类的父类,其子类有好多。 2、源码 它的源码比较简单,我附在这里。 public abstract class Number implements java.io.Serializable { public abstract int intValue(); publ ...
分类:
编程语言 时间:
2020-07-21 23:22:29
阅读次数:
72
#include<iostream> #include<string> using namespace std; struct student{ string name; string number; int score; }; int main(){ int n; cin>>n; student ...
分类:
其他好文 时间:
2020-07-21 23:01:26
阅读次数:
73
1,hive架构 1)client,客户端 2)Driver:驱动器 3)解析器,编译器,优化器,执行器 4)底层默认使用mr作为数据处理引擎 5)元数据,通常配置mysql来存储,这样支持多个客户端的访问 2,hive和传统数据库的比较 相同之处:都拥有类似的查询语言 不同之处: 1)数据存储位置 ...
分类:
其他好文 时间:
2020-07-21 22:25:52
阅读次数:
76
有时候在一些业务场景会出现需要生成一些虚拟的数据用于展示,当然,不能说是假的,此时就会需要一些工具类 如下代码: public class CreateRandomInfoUtils { /** * 随机生成手机号 * * @return */ public static String genera ...
分类:
移动开发 时间:
2020-07-21 22:16:07
阅读次数:
189
openstack trove的promote接口源码分析
分类:
其他好文 时间:
2020-07-21 22:05:10
阅读次数:
62
一、数值 1.1整型int 作用:年纪、等级、手机号、身份证号等整型数字相关 定义:age=10 # 本质age=int(10) 1.2浮点型float作用:身高、薪资、体重等浮点数字相关 定义:salary=3000.3 #本质salary=float(3000.3) 二、字符串 2.1简介 作用 ...
分类:
其他好文 时间:
2020-07-21 14:11:40
阅读次数:
101
1、some(过滤) const bool = [2, 3, 4].some((v, i, a) => { // v当前值,i下标,a当前数组 console.log(v) console.log(i) console.log(a) return v > 1 // 只要有其中一个数值满足就不再执行 ...
分类:
编程语言 时间:
2020-07-21 14:11:25
阅读次数:
75