发布时间:2017-07-21 17:13:02
“封装(encapsulation)”是对对象(object)的一种抽象,将某些部分隐藏起来,在程序外部看不到,无法调用。点击(此处)折叠或打开#!/usr/bin/env python# coding=utf-8'''__tes 是私有方法,te方法和__tes方法在同一个类中,可以调用。.........
发布时间:2017-07-19 17:40:15
@staticmethod 表示静态方法@classmethod 表示类方法点击(此处)折叠或打开#!/usr/bin/env python# coding=utf-8class test(object): def instance(self): print.........
发布时间:2017-07-18 18:22:19
类的继承过程中,子类经常会重写一些父类的方法,导致父类的方法不能用。如果要想调用父类的方法可以使用super(子类,self).方法。点击(此处)折叠或打开#!/usr/bin/env python# coding=utf-8class aa(object): def __init__(.........
发布时间:2017-07-04 12:02:00
点击(此处)折叠或打开#!/bin/bashdate="$(date %f -d "-1 day")"log_path=/game/khan/bin/log/log_file="login_${date}.log"acc_file="account.txt"platform=($(more ${log_tmp_dir}/${log_file} |grep 'lbqueryawardinf.........