传送门: https://zerojudge.tw/ShowProblem?problemid=a228 http://acm.hdu.edu.cn/showproblem.php?pid=1693 【题解】 插头dp第一题(难以置信我高中oi没有写过23333) 方程很简单,自己推一推插头的地方的 ...
分类:
其他好文 时间:
2018-08-19 21:54:04
阅读次数:
168
/** * 工厂模式 */ public class FactoryPattern { public static void main(String[] args) { // 原始写法 // IFruit fruit = new Apple(); // fruit.eat(); String nam... ...
分类:
其他好文 时间:
2018-08-12 15:48:34
阅读次数:
133
/***Class.getMethod(String,Class...)和Class.getDeclaredMethod(String,*Class...)方法可以获取类中的指定方法,调用invoke(Object,*Object...)可以调用该方法,Class.getMethod("eat")invoke(obj)*Class.getMethod("eat",int.class)invoke(
分类:
其他好文 时间:
2018-08-12 11:59:50
阅读次数:
248
匿名对象匿名对象是指在创建对象的时,只有创建对象的语句,却没有把对象地址赋值给某个变量.public class Person{
public void eat(){
System.out.println("
分类:
其他好文 时间:
2018-08-11 17:44:40
阅读次数:
183
继承子类以及子类实例化的对象可以父类的任何方法或变量类名可以访问父类所有内容 class Animal: def __init__(self,name,sex,age): self.name=name self.sex=sex self.age=age def eat(self,a1): print... ...
分类:
其他好文 时间:
2018-07-31 23:46:34
阅读次数:
303
匿名对象的概念 匿名对象是指创建对象时,只有创建对象的语句,却没有把对象地址值赋值给某个变量。 如:已经存在的类: public class Person{ public void eat(){ System.out.println(); } } 创建一个普通对象 Person p = new Pe ...
分类:
编程语言 时间:
2018-07-28 11:46:17
阅读次数:
137
抽象类基于继承演变而来,不能被实例化,用于规范子类,降低使用复杂度 抽象类的本质还是类,指的是一组类的相似性,包括数据属性(如type)和函数属性(如eat walk),而接口只强调函数属性的相似性。 抽象类是一个介于类和接口直接的一个概念,同时具备类和接口的部分特性,可以用来实现归一化设计 ...
分类:
其他好文 时间:
2018-07-16 17:14:41
阅读次数:
142
Description There are N kangaroos going out to eat at an Indian restaurant. The ith kangaroo wants to eat exactly xi food. The kangaroos all want to o ...
分类:
其他好文 时间:
2018-07-16 11:14:30
阅读次数:
141
# class Eat: # def __init__(self): # print('eat') # def eat(self): # print('eat') # # class Run: # def __init__(self): # print('run') # class Cat(Eat,... ...
分类:
编程语言 时间:
2018-07-06 01:20:48
阅读次数:
221
class Person(object): #self不是关键字,换成其他的标识符也是可以的,但是一般不要改 def run(self): print("run") def eat(self,food): print("eat" + food) def say(self): print("hello ...
分类:
编程语言 时间:
2018-07-05 16:03:11
阅读次数:
193