Python类的内置方法总结 内置方法 描述 __new__() 类的真正的构造方法, 用于产生对象(空属性) __init__() 初始化对象, 在创建对象的时候调用 __str__() 控制用户显示, 即在print()的时候显示 __repr__() 控制调试显示, 在调试模式下显示的内容 _ ...
分类:
其他好文 时间:
2020-07-19 17:44:35
阅读次数:
79
清除前 清除后 代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> .contianer{ width: 600px; height: 200px; } .a{ width: 50px; he ...
分类:
Web程序 时间:
2020-07-15 23:45:19
阅读次数:
97
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:
其他好文 时间:
2020-07-14 12:59:15
阅读次数:
223
mbp 启停查询ssh sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist sudo launchctl unload -w /System/Library/LaunchDaemons/ssh.plist sudo launc ...
分类:
其他好文 时间:
2020-07-14 11:50:09
阅读次数:
62
'''___repr__在交互模式下输入实例 按下回车的时候自动调用__str__在调用print函数 打印实例的时候自动调用'''class Test: def __init__(self,name = "yy",age=21): self.name = name self.age = agecl ...
分类:
其他好文 时间:
2020-07-12 23:58:30
阅读次数:
98
搞清clientHeight、offsetHeight、scrollHeight、offsetTop、scrollTop 网页可见区域高:document.body.clientHeight 网页正文全文高:document.body.scrollHeight网页可见区域高(包括边线的高):docu ...
分类:
其他好文 时间:
2020-07-11 12:36:10
阅读次数:
56
[C 语言中文开发手册fmal (Numerics) - C 中文开发手册 在头文件中定义 ??float fmaf( float x, float y, float z );(1)(自C99)double fma( double x, double y, double z );(2)(自 C99)... ...
分类:
其他好文 时间:
2020-07-09 12:36:22
阅读次数:
74
如下: #(1)__init__ #(2)__str__ #(3)__repr__ #(4)__new__:执行__init__之前执行__new__方法,在单例/rest framework序列化中使用过 #在rest framework序列化源码中的使用 class BaseSerializer ...
分类:
其他好文 时间:
2020-07-04 20:52:05
阅读次数:
60
简要 环境搭建 安装TortoiseSVN IDEA集成TortoiseSVN 常用操作 Share Project Checkout Add Delete Update Revert Commit Edit Conflicts Others Local Changes Repository Inc ...
分类:
其他好文 时间:
2020-07-04 18:43:24
阅读次数:
74
Android精华篇 - App中原生页面 VS H5页面 Guo_IT 2016-12-20 13:01:26 3505 收藏 1 分类专栏: android 前端 现有3类主流APP,分别为:Web App、Hybrid App(混合模式移动应用,Hybrid有“混合的”意思)、 Native ...
分类:
其他好文 时间:
2020-07-04 18:37:47
阅读次数:
49