function foo() { }var oldName = foo.name;foo.name = "bar";[oldName, foo.name] ==> ["foo", "foo"] function foo() { }Object.defineProperty(foo,"name",{w ...
分类:
其他好文 时间:
2020-07-29 14:42:34
阅读次数:
69
http://bl.ocks.org/enjalot/1829187 index.html# <html> <meta charset='utf-8' /> <head> </head> <body> <svg> <text id='text_node' y="20px" text-anchor=" ...
分类:
移动开发 时间:
2020-07-29 10:27:04
阅读次数:
87
一、什么是stickyFooter? 1.经典的粘连“footer”布局; 2.有一块内容<main>; 3.当<main>的高度足够长的时候,<footer>应该紧跟在<main>元素后面; 4.当<main>元素比较短的时候,(小于屏幕的高度),我们期望这个<footer>元素能够“粘连”在屏幕 ...
分类:
其他好文 时间:
2020-07-26 19:19:28
阅读次数:
83
<script type="text/javascript"> let sb=Symbol('abc'); let sb2=Symbol('def'); console.log(sb); console.log(sb2); console.log(sb==sb2); // 定义一个对象 let sb ...
分类:
其他好文 时间:
2020-07-26 15:06:57
阅读次数:
49
特殊成员 class Foo(object): def __init__(self,a1,a2): self.a1 = a1 self.a2 = a2 def __call__(self, *args, **kwargs): print(11111,args,kwargs) return 123 d ...
分类:
其他好文 时间:
2020-07-25 23:37:18
阅读次数:
59
4 开启 Reduce 输出阶段压缩 当 Hive 将 输 出 写 入 到 表 中 时 , 输 出 内 容 同 样 可 以 进 行 压 缩 。 属 性hive.exec.compress.output 控制着这个功能。用户可能需要保持默认设置文件中的默认值 false, 这样默认的输出就是非压缩的纯 ...
分类:
其他好文 时间:
2020-07-24 21:30:31
阅读次数:
69
/* 6、从1循环到150并在每行打印一个值, 另外在每个3的倍数行上打印出“foo”,在每个5的倍数行上打印“biz”, 在每个7的倍数行上打印输出“baz”。 */ class Test07_Exer6{ public static void main(String[] args){ //从1循 ...
分类:
编程语言 时间:
2020-07-24 21:20:51
阅读次数:
62
export default class Test extends cc.Component{ //#region 声明 public foo():void; public foo(a:string,b:string):string; public foo(a:number,b:number):nu ...
分类:
其他好文 时间:
2020-07-24 16:12:30
阅读次数:
57
源文件安装 在CentOS和Red Hat系统中,首先添加EPEL仓库,然后更新yum源: sudo yum install epel-release sudo yum update 然后安装Redis数据库: sudo yum -y install redis 安装好后启动Redis服务即可: s ...
分类:
其他好文 时间:
2020-07-24 15:34:03
阅读次数:
67
数组模型 let[a,b,c] = [1,2,3] //a=1,b=2,c=3 let[a,[b,c]] = [1,[2,3]] //a=1,b=2,c=3 let[a, ,b] = [1,2,3] //a=1,b=3 let[a=1,b] = [] //a=1,b=undefined //剩余运算 ...
分类:
其他好文 时间:
2020-07-24 15:33:20
阅读次数:
63