启动hbase shell ./bin/hbase shell 1、创建表,查看表 create 'tableName', 'familykey1','familykey2',.... eg. create 'student','info','course'list #查看表 2、查看表信息 des ...
分类:
系统相关 时间:
2020-06-24 23:41:04
阅读次数:
75
默认的路由日志是这样的: [GIN-debug] POST /foo --> main.main.func1 (3 handlers) [GIN-debug] GET /bar --> main.main.func2 (3 handlers) [GIN-debug] GET /status --> ...
分类:
其他好文 时间:
2020-06-24 23:16:17
阅读次数:
39
https://www.cnblogs.com/zyq-blog/p/5606760.html 一. 简介 urllib.request.urlopen()函数用于实现对目标url的访问。 函数原型如下:urllib.request.urlopen(url, data=None, [timeout, ...
分类:
Web程序 时间:
2020-06-24 21:31:38
阅读次数:
235
效果图 功能 实现bar左右拖拽 左侧:js通过width控制 :style="{width: lwidth}" 右侧:盒子设置定位position,js通过的left来控制,同时样式需要设置 right: 0; bottom: 0; 才会出现width 中间:设置定位position,使用calc ...
分类:
其他好文 时间:
2020-06-24 19:53:14
阅读次数:
108
1.嵌套类,类可以嵌套在其他类中: class Outer { private val bar: Int = 1 class Nested { fun foo() = 2 } } val demo = Outer.Nested().foo() // == 2 2.内部类,标记为inner的嵌套类能够 ...
分类:
其他好文 时间:
2020-06-24 16:15:38
阅读次数:
42
Substring with Concatenation of All Words (H) 题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all star ...
分类:
其他好文 时间:
2020-06-24 12:04:23
阅读次数:
38
1095 Cars on Campus (30分) Zhejiang University has 8 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers ...
分类:
编程语言 时间:
2020-06-24 00:20:12
阅读次数:
73
如果一个类没有自己的构造函数,编译器会在需要的时候为其合成一个出来,俗称:合成默认构造函数。但是请注意是在需要的时候,并不是所有情况。 请看下面代码: 1 #include<iostream> 2 using namespace std; 3 class Foo { 4 public: 5 int ...
分类:
编程语言 时间:
2020-06-23 01:10:22
阅读次数:
75
1:递归 一:什么是递归 迭代器是间接或者直接调用自己本身 二:代码演示 def foo(): print('from foo') foo() foo() def bar(): print("from bar") def test(): print("from test") bar() test() ...
分类:
其他好文 时间:
2020-06-23 00:45:51
阅读次数:
59
20. 骰子求和 中文English 扔 n 个骰子,向上面的数字之和为 S。给定 n,请列出所有可能的 S 值及其相应的概率。 样例 样例 1: 输入:n = 1 输出:[[1, 0.17], [2, 0.17], [3, 0.17], [4, 0.17], [5, 0.17], [6, 0.17 ...
分类:
其他好文 时间:
2020-06-21 22:57:28
阅读次数:
46