06 2020 档案

摘要:class Base { static instance(){ return new this() } name1(){ return getClassName(this) } static name2(){ return getClassName(new this()) } } class A e 阅读全文
posted @ 2020-06-17 17:16 很小的小雨 阅读(116) 评论(0) 推荐(0)
摘要:function Node(element) { this.element = element; this.next = null; this.previous = null; }function LList() { this.head = new Node("head"); this.find = 阅读全文
posted @ 2020-06-15 14:09 很小的小雨 阅读(109) 评论(0) 推荐(0)
摘要:const url = Platform.OS 'ios' ? `iosamap://navi?sourceApplication=oa&lat=39.90980&lon=116.37296&dev=0` : `androidamap://navi?sourceApplication=appname 阅读全文
posted @ 2020-06-11 15:11 很小的小雨 阅读(461) 评论(0) 推荐(0)