码迷,mamicode.com
首页 >  
搜索关键字:eat    ( 649个结果
~~面向对象进阶:类方法~~
进击のpython 面向对象进阶 类方法 classmethod 类方法 python的类方法是通过@classmethod装饰器实现的 类方法和普通的方法的区别是 类方法只能访问类变量,不能访问实例变量 可以看到我调用Dog里面的eat方法,显示报错 果然,加上了这个类方法之后就没有办法访问实例变 ...
分类:其他好文   时间:2019-07-28 15:39:32    阅读次数:76
对象和面向对象
1 var dog = { 2 // 属性 3 name: "旺财", 4 age: 10, 5 dogFriends: ["阿黄", "阿菜", "飞毛腿"], 6 7 // 方法 8 eat: function () { 9 console.log(... ...
分类:其他好文   时间:2019-07-12 23:42:57    阅读次数:222
python6.3类的继承与多态
class Animal(object): def __init__(self,color): self.color=color def eat(self): print("动物在吃!") def run(self): print("动物在跑!") class Cat(Animal):#继承Anim ...
分类:编程语言   时间:2019-06-30 20:34:50    阅读次数:135
4-3 go继承
package main import "fmt" type persion struct { name string age int sex bool hobby []string } //继承的目的是为了发展,增加新的属性和方法,修改属性和方法。 func (p *persion) Eat() ... ...
分类:其他好文   时间:2019-06-24 17:00:55    阅读次数:91
LeetCode 49. 字母异位词分组(Group Anagrams)
49. 字母异位词分组 49. Group Anagrams 题目描述 给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [    ...
分类:其他好文   时间:2019-05-26 16:16:36    阅读次数:115
spring框架——依赖注入
依赖注入:DI 又称控制反转:IoC 项目名字spring_DI 一、implement包中定义了两个接口Food和Person 1.接口Food package org.interfaces; public interface Food { public String eat(); //food接 ...
分类:编程语言   时间:2019-05-24 22:16:26    阅读次数:131
java 接口的运用
package 接口运用;interface Person{ public void eat(); public void sleep(); public void play(); }class Student implements Person{ String StudentClass; publ ...
分类:编程语言   时间:2019-05-16 22:55:25    阅读次数:154
JAVA 多态向下转型
package Demo513.Multi;public abstract class Animal { public static void main(String[] args) { Animal animal =new Cat(); animal.eat(); //往下转型:必须保证对象创建的... ...
分类:编程语言   时间:2019-05-14 12:54:38    阅读次数:136
Java转python第五天
一、简单生成器函数 与函数不同的是返回不用return,而是用yield。生成器函数返回的是一个迭代器。 例子:要求生产100000个包子,但是又不可能一次性吃完,每次调用eat()函数时,传入要吃的数量,在进行生产, 不会造成控件的浪费 def produce(): for i in range( ...
分类:编程语言   时间:2019-05-13 23:07:42    阅读次数:182
[LeetCode] Koko Eating Bananas 科科吃香蕉
Koko loves to eat bananas. There are piles of bananas, the th?pile has bananas. The guards have gone and will come back in hours. Koko can decide her ...
分类:其他好文   时间:2019-05-04 00:52:04    阅读次数:182
649条   上一页 1 ... 11 12 13 14 15 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!