使用multiprocessing.Process来开启进程 import os import time from multiprocessing import Process def eat(): print('start eating',os.getpid()) time.sleep(1) pr ...
分类:
系统相关 时间:
2019-12-04 14:56:50
阅读次数:
130
高阶函数与执行上下文 高阶函数满足条件(任意一个即可):1、接受一个或多个函数作为输入。 2、输出一个函数。 闭包满足条件(必须全满足):1、一个函数中要钱讨一个内部函数,并且内部函数要访问外部函数的变量。 2、内部函数要被外部引用。 例:function eat(){ var food = '鸡翅 ...
分类:
其他好文 时间:
2019-11-30 19:31:17
阅读次数:
106
interface Fruit{ public void eat(); } class Apple implements Fruit{ @Override public void eat() { System.out.println("吃苹果"); } } class Cherry implemen ...
分类:
其他好文 时间:
2019-11-21 12:13:04
阅读次数:
63
原题链接在这里:https://leetcode.com/problems/koko-eating-bananas/ 题目: Koko loves to eat bananas. There are N piles of bananas, the i-th pile has piles[i] ban ...
分类:
其他好文 时间:
2019-11-18 09:34:59
阅读次数:
98
Emacs 配置说明 Emacs配置文件在哪里? 参考:https://www.cnblogs.com/eat-and-die/p/10309681.html 包管理: 显示行号: 更换主题: 添加目录树: 快捷键: 切换窗口:Ctrl + x o 关闭窗口:Ctrl + x 0 ...
分类:
系统相关 时间:
2019-11-15 20:07:28
阅读次数:
100
1.继承 class Animal: def __init__(self,name,age,sex): self.name = name self.age = age self.sex = sex def eat(self): print('{}正在吃东西~'.format(self.name)) ...
分类:
编程语言 时间:
2019-11-14 09:47:09
阅读次数:
66
什么是继承? 一个类得到了另一个类当中的成员变量和成员方法。java只支持单继承。一个子类只允许继承一个父类,一个父类可以被多个子类继承。 比如下面的一个例子, 先创建一个Person类 class Person{ String name; int age; void eat(){ System.o ...
分类:
编程语言 时间:
2019-11-06 22:39:36
阅读次数:
97
本篇文章仅记录在平时刷题过程中,让人眼前一亮的处理思路,所以本篇文章适合算法爱好者阅读及参考,没有算法功底的程序猿们,建议不用花费太多的时间在本篇文章 1,题目描述:给定一个字符串数组,请根据“相同字符集”进行分组(摘自 LintCode 49) 例 :Input: ["eat", "tea", " ...
分类:
编程语言 时间:
2019-10-25 13:19:47
阅读次数:
94
继承:子类继承父类,在react开发中经常见到,前端用的算多 // 父类 class People { constructor (name, age) { this.name = name this.age = age } eat() { alert(`${this.name} eat someth ...
分类:
其他好文 时间:
2019-10-20 11:14:50
阅读次数:
76
类,即模板,比如一个People的类,class People他就是一个模板,我可以通过这个模板实例化很多对象 class People { constructor (name, age) { this.name = name this.age = age } eat() { alert(`${th ...
分类:
其他好文 时间:
2019-10-20 10:34:59
阅读次数:
74