Problem Description Keke is currently studying engineering drawing courses, and the teacher has taught her how to find its volume through the three vi ...
分类:
其他好文 时间:
2019-04-20 09:58:52
阅读次数:
142
In this lesson you will learn how to recognize animals and describe feeling. 课上内容(Lesson) 词汇(Key Word ) 句型(Sentences) Face to Face with a Gorilla I wo ...
分类:
其他好文 时间:
2019-04-16 00:46:03
阅读次数:
199
package com.mydemo2; public class Student { public void study() { System.out.println("好好学习,天天向上"); }} package com.mydemo2; public class Teacher { publ ...
分类:
其他好文 时间:
2019-04-13 13:51:12
阅读次数:
180
课上内容(Lesson) # Appetizer ['æp?'ta?z?] n. 开胃物,开胃食品 spinach salad 菠菜沙拉 # "p" 发b音 gazpacho 西班牙凉菜,西班牙冷汤菜(用番茄、青椒、黄瓜等制成) # Soup 汤 borscht [b?r?t] 罗宋汤 # Main ...
分类:
其他好文 时间:
2019-04-10 23:21:39
阅读次数:
168
class test extends egret.DisplayObjectContainer { public constructor() { /** * 1.不添加构造函数constructor */ // var t = new Teacher(); // t.age = 30; // t.n... ...
分类:
其他好文 时间:
2019-04-09 22:15:18
阅读次数:
264
teacher student net 顾名思义:就是老师和学生的网络,也就是老师训练好,然后教学生去怎么训练 这里着重介绍两篇论文, 第一篇是hinton的paper:Distilling the Knowledge in a Neural Network 第二篇是阿里的一个paper:Rocke ...
分类:
Web程序 时间:
2019-04-03 20:45:40
阅读次数:
317
一、组合 二、继承(什么是什么的关系) 什么是继承 继承是一种创建新类的方式,在python中,新建的类可以继承一个或多个父类,父类又可称为基类或超类,新建的类称为派生类或子类 python中类的继承分为:单继承和多继承 查看继承 提示:如果没有指定基类,python的类会默认继承object类,o ...
分类:
编程语言 时间:
2019-04-02 00:25:04
阅读次数:
180
课上内容(Lesson) 1. Do you know any of these foods? Yes I do. There are hot pepper(小辣椒), a clove of garlic(蒜), salt(盐), onions and pepper(胡椒;辣椒;胡椒粉). All ...
分类:
其他好文 时间:
2019-04-02 00:02:18
阅读次数:
204
一、模板继承 1.模板继承可以在创建一个基本“骨架”后,被其它子模板继承并覆盖,通过修改基础模板可以修改子模板中的所有框架 2.在模板teacher文件夹下创建基础模板 {% block xxx}与{% block }是成对出现的 该标签的功能是为子模板声明该出内容可以被覆盖重写 不写则为基础模板的 ...
分类:
其他好文 时间:
2019-04-01 00:48:54
阅读次数:
149
先了解下,java中克隆相关的。需实现clonable接口,然后重写clone方法。 Teacher类: Stu类: 测试类: 说明说,clone不是真正的复制,引用类型的成员变量是一样的。 重写clone方法可以实现深拷贝: 原型模式: ...
分类:
其他好文 时间:
2019-03-27 00:01:12
阅读次数:
193