Bitmap(Type, String) 从指定的资源初始化 Bitmap 类的新实例。 public Bitmap (Type type, string resource); 参数 typeType 用于提取资源的类。 resourceString 资源的名称。 示例 下面的代码示例演示如何从类型 ...
分类:
其他好文 时间:
2020-03-28 13:27:27
阅读次数:
69
手写实现如下: Function.prototype.myApply = fucntion(context) { if(typeof this !== 'function') { throw new TypeError('not a function!') } context = context | ...
分类:
移动开发 时间:
2020-03-25 10:58:17
阅读次数:
162
1. function isUndefinedOrNull(obj){ return typeof obj 'undefined' || obj null; } function isNullOrWhiteSpace(obj){ return typeof str 'undefined' || st ...
分类:
其他好文 时间:
2020-03-24 19:09:14
阅读次数:
79
ES6 第十二节 Symbol在对象中的作用 [toc] 第十二节 Symbol在对象中的作用 Symbol意思是 全局标记 。 声明Symbol 我们先来回顾一下我们的数据类型,在最后在看看Symbol如何声明,并进行一个数据类型的判断。 Symbol的打印 我们声明一个Symbol,然后控制台输 ...
分类:
其他好文 时间:
2020-03-23 16:47:52
阅读次数:
67
export const setItem = (name, value) => { if (typeof value 'object') { value = JSON.stringify(value) } window.localStorage.setItem(name, value) } expo ...
Function.prototype.selfCall = function(ctx, ...args) { if(typeof this !== 'function') { throw new Error('you must use call with function') } ctx = ctx ...
分类:
其他好文 时间:
2020-03-22 13:42:22
阅读次数:
92
当一个Binding有明确的数据来源时,我们可以通过为Source或ElementName赋值的办法让Binding与之关联。有些时候我们不能确定作为Source的对象叫什么名字,但知道它与作为Binding目标的对象在UI布局上的相对关系,比如控件自己关联自己的某个数据、关联自己某级容器的数据。这 ...
分类:
其他好文 时间:
2020-03-21 18:19:57
阅读次数:
65
function isObject(value) { const type = typeof value; return value !== null && (type 'object' || type 'function'); } /** * constructor 表示 new 的构造器 * a ...
分类:
Web程序 时间:
2020-03-21 14:43:35
阅读次数:
69
function type(target){ var template = { '[object Array]':'array', '[object Object]':'object', '[object Number]':'number - object', '[object Boolean]': ...
分类:
其他好文 时间:
2020-03-20 20:07:03
阅读次数:
66
反射是指程序运行期间对程序本身进行访问和修改的能力 变量的内在机制 变量包含类型信息和值信息 类型信息:是静态的元信息,是预先定义好的 值信息:是程序运行过程中动态改变的 反射的使用 reflect 包封装了反射相关的方法 获取类型信息:reflect.TypeOf,是静态的 获取值信息:refle ...
分类:
其他好文 时间:
2020-03-17 14:14:43
阅读次数:
57