class Foo: def __init__(self,name,age): self.name = name self.age = age def show(self): return "%s%s"%(self.name,self.age) obj = Foo("alex",22) # prin ...
分类:
其他好文 时间:
2020-02-29 14:41:44
阅读次数:
74
摘自:https://www.cnblogs.com/mengqd/p/12380204.html meng5619 Flutter Widgets 之 BottomNavigationBar 和 BottomNavigationBarItem 注意:无特殊说明,Flutter版本及Dart版本如下 ...
分类:
其他好文 时间:
2020-02-29 11:41:08
阅读次数:
83
The simple answer to that is, "Kernel Developers do not put blind faith in anything". When any data is passed to the kernel space from userspace, it i ...
分类:
其他好文 时间:
2020-02-28 18:52:41
阅读次数:
85
包含 动态包含 变量包含 角色 ROLE 角色定义 角色依赖 例子包含使用include模块来包含foo文件tasks: - include: foo.yml--- foo.yml- name: test foo command: echo fooinclude 还允许传递变量- include: ... ...
分类:
其他好文 时间:
2020-02-25 13:13:42
阅读次数:
91
Home»Linux»shortcuts 快捷键 Page Updated 2018-12-12 19:23 shortcuts 快捷键 移动光标Ctrl – a :移到行首Ctrl – e :移到行尾Ctrl – b :往回(左)移动一个字符Ctrl – f :往后(右)移动一个字符Alt – b... ...
分类:
其他好文 时间:
2020-02-25 13:04:52
阅读次数:
115
1. 函数定义 import "errors" func Add(a int, b int) (ret int, err error) { if a < 0 || b < 0 { err = errors.New("必须是非负数") } return a + b, nil // 支持多重返回 } 多 ...
分类:
其他好文 时间:
2020-02-24 15:00:56
阅读次数:
72
有一次我发现下面这段代码无法通过编译。 #include <iostream> using namespace std; struct A { A(int n) {} }; struct B { B(A a) {} int foo() const { return 1; } }; int main( ...
分类:
编程语言 时间:
2020-02-24 11:22:14
阅读次数:
70
js是一个单线程,非阻塞,异步脚本语言 在执行栈中先进后出 (相对与函数中调用函数,单行代码执行直接出去了) 栈里面表现很慢的东西叫阻塞 slow //比如http请求 如果我们在浏览器控制台中运行'foo'函数,是否会导致堆栈溢出错误? function foo() { setTimeout(fo ...
分类:
其他好文 时间:
2020-02-24 10:04:35
阅读次数:
78
TOC Table of Contents 1. TOC 1.1. Hsieh, 2016, JFS 1 TOC 1.1 Hsieh, 2016, JFS Results and discussions Vibrating characteristics of a circular cylinder ...
分类:
其他好文 时间:
2020-02-24 09:29:23
阅读次数:
59
在编程过程中为了增加友好性,在程序出现bug时一般不会将错误信息显示给用户,而是显示一个提示的页面 try: pass except Exception as e: pass 异常种类 AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性x IOError 输 ...
分类:
其他好文 时间:
2020-02-24 09:22:11
阅读次数:
69