在看SocketServer源码之前,先看一个例子: class Base(object): def __init__(self, name): self.name = name self.Testfunc() def Testfunc(self): print('do Base Testfunc') class Son(Base): def Testfunc(self): print('do Son Testfunc') sonobj = Son('sonobj') class Base(ob…
python_way day10 1.python的作用域和其他语言的作用域 2.python2.7多继承和3.5多继承的区别 3.socket和socketserver源码(并发处理socket) 一.python的作用域 在python中没有块级作用域,所以name已经被定义了if 1 ==1: name ="hx" print(name)hx for i in rang(10) name = iprint(name)9python中的作用域是函数:def func(): name…
一.前述 上次分析了客户端源码,这次分析mapper源码让大家对hadoop框架有更清晰的认识 二.代码 自定义代码如下: public class MyMapper extends Mapper<Object, Text, Text, IntWritable>{ private final static IntWritable one = new IntWritable(1); private Text word = new Text(); public void map(Object ke…