目录: 1.原型的引入 代码一 function Person(name, age){ this.name = name; this.age = age; this.eat = function() { console.log("eat..."); }; } var per1 = new Perso ...
分类:
Web程序 时间:
2020-01-18 10:46:00
阅读次数:
83
//es5 let Animal = function (type){ this.type = type } //这是类的实例对象方法 Animal.prototype.eat = function (){ Animal.walk()//引用类的静态方法 console.log('eat food' ...
分类:
其他好文 时间:
2020-01-17 13:44:21
阅读次数:
69
let _age = 4 class Animal { construct (type){ this.type = type } get age(){ return _age } set age(val){ if(val < 7 && val >4){ _age = val } } eat(){ c ...
分类:
其他好文 时间:
2020-01-17 11:42:48
阅读次数:
60
//es5 let Animal = function(type){ this.type = type } Animal.prototype.eat = function (){ console.log('eat food') } let dog = new Animal('dog') let mo ...
分类:
其他好文 时间:
2020-01-17 00:14:51
阅读次数:
75
题意:给你一段序列,如果存在一段子序列之和大于序列总和,则输出NO,不存在则输出YES。 思路:因为是子序列所以不能等于序列,所以只要求1到n-1和2到n里的最大子序列与序列总和做比较。 #include<bits/stdc++.h> #define N 1e5+10 using namespace ...
分类:
其他好文 时间:
2020-01-16 17:27:08
阅读次数:
61
链接: "https://nanti.jisuanke.com/t/42582" Description Bob is hungry now and he needs to eat some food. Alice puts n dishes of food in front of him, num ...
分类:
其他好文 时间:
2020-01-13 17:57:32
阅读次数:
88
"Mezo Playing Zoma" "Just Eat It!" "Fadi and LCM" "Dr. Evil Underscores" Mezo Playing Zoma $$ Time Limit: 1 s\quad Memory Limit: 256 MB $$ 可以到达的最左是 $ ...
分类:
其他好文 时间:
2020-01-12 21:50:14
阅读次数:
88
https://codeforces.com/contest/1285 A Mezo Playing Zoma 题意:按一系列的"LR"键,其中一些键可能被忽略执行,求最后分布的位置数量。 题解:肯定是最左和最右夹着的区间,所以统计最左的和最右的位置。最后会发现恰好就是n+1。 B Just Eat ...
分类:
其他好文 时间:
2020-01-11 13:17:32
阅读次数:
144
题目:http://codeforces.com/contest/1285/problem/B 思路:最大区间和,dp ...
分类:
其他好文 时间:
2020-01-11 09:53:28
阅读次数:
57
作者最近研究框架底层代码过程中感觉自己基础不太牢固,于是写了一点案例,以防日后忘记 接口类:Animals 1 public interface Animals { 2 3 public void eat(); 4 } package cn.chenc.study.entity; public in ...
分类:
编程语言 时间:
2020-01-06 00:10:50
阅读次数:
178