事件: import React,{Component} from 'react' class Index extends Component{ constructor(props){ super(props) this.state = { msg:'张学友' } } getMsg=(event)= ...
分类:
其他好文 时间:
2020-03-23 11:10:31
阅读次数:
54
题目大意:将范围从1~pow(2,64)-1内的super power输出。super power的定义:一个数x至少存在两种x=pow(i,k),(k!=1)。 题解: 注意数据范围2的64次方-1,而long long 的范围是2的63次方-1,所以要用unsigned long long。 一 ...
分类:
其他好文 时间:
2020-03-22 19:43:28
阅读次数:
68
一、自定义View相关问题 1. 自定义View的绘制流程? 第一步:复写onMeasure方法。先measureChild方法 测量出所有子控件的moMeasure。 //1,测量自身 super.onMeasure(widthMeasureSpec, heightMeasureSpec); // ...
分类:
移动开发 时间:
2020-03-22 10:58:16
阅读次数:
84
可以看到,在exml编辑器中我们给UI组件添加了ID属性; 之后在对应的 ts文件中使用这个组件 namespace ui { export class GameCtrl extends eui.Component { constructor() { super(); this.skinName = ...
分类:
其他好文 时间:
2020-03-20 12:41:35
阅读次数:
197
配置任务JOBS 上述代码中几个参数: 1. id:自定义ID 2. func:即你要定时执行的函数,书写规则是 ‘目录 : 函数名’,从config文件所在的目录算起 3. args:要传入的参数 4. trigger:任务类型,或者理解为定时器开启的方式,有三种:date表示具体的一次性任务,i ...
分类:
其他好文 时间:
2020-03-20 12:22:41
阅读次数:
82
在子类中想要获取父类中的值的方法: 在子类中 super 代表了父类,可以用 super.成员变量名 来获取父类成员变量名 在子类的构造函方法中可以用 super(属性值,属性值.....) 的方式给父类中的属性赋值。(必须写在子类构造方法里的第一行) Obeject类是所有类的父亲,object类 ...
分类:
编程语言 时间:
2020-03-19 21:24:53
阅读次数:
64
static关键字的应用:使用静态的变量可以实现 "累加" 的效果 package com.aff.statics; public class TestCircle { public static void main(String[] args) { Circle c1 = new Circle(2 ...
分类:
其他好文 时间:
2020-03-19 18:58:23
阅读次数:
57
[program:yunpian_errsend_notify]directory=/work/xxxxx/yunpian_errnotifycommand=/work/xxxx/yunpian_errnotify/mainstdout_logfile=/work/shuaibing.huo/yunpian_errnotify/yunpian.logautostart=trueautorestar
分类:
其他好文 时间:
2020-03-19 15:06:45
阅读次数:
62
首先react有10个生命周期钩子函数 挂载期 constructor 数据接收 实现继承super(props) componentWillMount 数据挂载之前 可以操作数据 不可以操作dom componentDidMount 数据挂载之后 可以操作数据和dom render 渲染组件 和 ...
分类:
其他好文 时间:
2020-03-19 09:16:46
阅读次数:
91
结论:需要根据state进行渲染时,使用React.Component;用不到state时,可以直接写函数组件。 Function 函数组件:可以接收入参(props),通过return返回dom结构。 function Hello(props) { return <h1>Hello, {props ...
分类:
其他好文 时间:
2020-03-17 08:31:55
阅读次数:
60