一 isinstance(obj,cls)和issubclass(sub,super) isinstance(obj,cls)检查是否obj是否是类 cls 的对象 1 class Foo(object): 2 pass 3 4 obj = Foo() 5 6 isinstance(obj, Foo ...
分类:
其他好文 时间:
2020-05-10 17:29:22
阅读次数:
71
getattribute class Foo: def __init__(self,x): self.x=x def __getattr__(self, item): print('执行的是我') # return self.__dict__[item] f1=Foo(10) print(f1.x) ...
分类:
其他好文 时间:
2020-05-10 17:05:46
阅读次数:
55
__setitem__,__getitem,__delitem__ class Foo: def __init__(self,name): self.name=name def __getitem__(self, item): print(self.__dict__[item]) def __set ...
分类:
其他好文 时间:
2020-05-10 16:47:36
阅读次数:
68
Vue2-football—爆炸足球 模仿懂球帝移动端官网,欢迎各位老铁stargithub地址:https://github.com/vqlai/vue2... 技术栈 前端 es6 vue2 vue-router2 axios better-scroll vue-lazyload stylus ...
分类:
其他好文 时间:
2020-05-10 10:33:50
阅读次数:
80
/* 只写声明,不写实现,然后直接调用,查看错误提示 void __cdecl foo(int)" (?foo@@YAXH@Z) void __cdecl foo(int,int)" (?foo@@YAXHH@Z) void __cdecl foo(char,short,int,__int64)" ...
分类:
其他好文 时间:
2020-05-08 13:01:12
阅读次数:
79
现有两个类 和`HelloWorld`,其源代码如下: Demo.java: HelloWorld.java: 可以看到 和`HelloWorld Demo print() HelloWorld.foo()`从而打印出"Hello World!"。 现有一个 类,其结构如下: 现在,我们的任务是 在 ...
分类:
其他好文 时间:
2020-05-06 21:24:03
阅读次数:
57
1. HTML 文件 vue Hello App! 默认会被渲染成一个 `` 标签 Go to Foo Go to Bar js // 0. 如果使用模块化机制编程,导入Vue和VueRouter,要调用 Vue.use(VueRouter) // 1. 定义 (路由) 组件。 // 可以从其他文件 ...
分类:
其他好文 时间:
2020-05-05 00:34:12
阅读次数:
59
原理 装饰器本质也是一个函数, 只不过这个函数需要遵循以下规则: 入参只能有一个,类型为函数。 被装饰的函数将入会被传入这个参数 返回值是必须是一个函数, 届时被调用的时候实际上调用的是返回出来的这个函数,所以返回的函数入参通常是 以满足所有函数需要 之后通过@语法糖即可装饰到任意函数上 简单装饰器 ...
分类:
编程语言 时间:
2020-05-04 21:04:33
阅读次数:
77
code def is_number(s): try: float(s) return True except ValueError: pass return False # 测试字符串和数字 print(is_number('foo')) # False print(is_number('1')) ...
分类:
编程语言 时间:
2020-05-03 16:55:03
阅读次数:
56
def capitalize(s, lower_rest=False): # print(s) # fooBar # fooBar # print(s.upper()) # FOOBAR # FOOBAR # print(s[:1].upper()) # F # F # print(s[1:].lo ...
分类:
其他好文 时间:
2020-05-03 15:03:43
阅读次数:
94