supervisor 启动失败报错 Error: Another program is already listening on a port that one of our HTTP servers is configured to use. Shut this program down firs ...
分类:
其他好文 时间:
2019-06-03 14:21:16
阅读次数:
111
class Animal{ public void move(){ System.out.println("动物可以移动"); } } class Dog extends Animal{ public void move(){ System.out.println("狗可以跑和走"); } } pu... ...
分类:
编程语言 时间:
2019-06-03 12:42:17
阅读次数:
113
一、面向对象 1.1 this的指向问题 要看清楚最终的函数调用者是谁。 IIFE也被当做函数直接运行,IIFE的this都是window对象 函数的arguments是类数组对象,比如传入的第0项参数是函数,让它运行:arguments "0" ,函数中的上下文是arguments对象。还要知道函 ...
分类:
编程语言 时间:
2019-06-03 12:03:10
阅读次数:
116
Apktool反编译apk后程序中每一个类都会有一个smali文件。 一、当前类信息:smali文件的头三行描述了当前类的一些信息。 Eg: .class <访问权限> [修饰关键字]<类名> .super<父类名> .source<源文件名> 根据DexClassDef结构解析获取三个字段的信息 ...
分类:
其他好文 时间:
2019-06-03 09:21:59
阅读次数:
132
[TOC] Supervised Learning Massive Unlabeled data Unsupervised Learning Why needed Dimension reduction Preprocessing:Huge dimension, say 224\ 224, is h ...
分类:
其他好文 时间:
2019-06-02 20:36:04
阅读次数:
103
protected KDWorkButton btnFileManage; protected ActionFileManage actionFileManage = null; public void onLoad() throws Exception { super.onLoad(); this ...
分类:
其他好文 时间:
2019-06-02 18:14:41
阅读次数:
273
EditUI > public boolean checkBeforeWindowClosing() { boolean b = super.checkBeforeWindowClosing(); if ((this.editData != null) && (this.editData.getId ...
分类:
其他好文 时间:
2019-06-02 17:48:00
阅读次数:
232
super和this的含义 super :代表父类的存储空间标识(可以理解为父亲的引用)。 this :代表当前对象的引用(谁调用就代表谁)。 super和this的含义 super :代表父类的存储空间标识(可以理解为父亲的引用)。 this :代表当前对象的引用(谁调用就代表谁)。 super关 ...
分类:
其他好文 时间:
2019-06-02 16:08:46
阅读次数:
113
泛型中? super T和? extends T的区别 泛型中? super T和? extends T的区别 原文出处: 并发编程网 经常发现有List<? super T>、Set<? extends T>的声明,是什么意思呢?<? super T>表示包括T在内的任何T的父类,<? exten ...
分类:
其他好文 时间:
2019-06-02 16:03:31
阅读次数:
106