码迷,mamicode.com
首页 >  
搜索关键字:bad elf interpreter    ( 6915个结果
TP5 redis 延迟队列
###TP5.1 下载安装Redis 配置redis信息 <?php namespace app\common\redis; class RedisHandler { public $provider; //创建实例子 private static $_instance = null; //创建re ...
分类:其他好文   时间:2021-06-13 10:19:59    阅读次数:0
leetcode-python-FizzBuzz
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:编程语言   时间:2021-06-10 17:39:18    阅读次数:0
风变编程干货整理-2021.6.5
2021年6月5日下午列车讨论: 1.类属性本身不需要实例化也可以调用。 2.实例化之后得到的就是实例属性,就是专属于各个实例自己的属性,就是初始化方法__init__里面那些self.xxx=xxx。 这里的self是一个占位符,直接指向实例对象,也就是说,如果是实例对象的方法或者属性,就一定要添 ...
分类:其他好文   时间:2021-06-06 19:22:32    阅读次数:0
【Python OO其一】构造函数__init__()
Python对象包括三个部分:id(identity识别码)、type(对象类型)、value(对象的值) __ init __()构造函数 __ init __()方法应用定义构造函数,作用是在实例化对象时,初始化当前对象的属性,无返回值。相当于给对象一个固有属性。 __ init __()”规则 ...
分类:编程语言   时间:2021-06-06 18:50:30    阅读次数:0
Python 实现的python字节码解释器
看到一篇文章,介绍了一个用Python实现的python字节码解释器: https://www.aosabook.org/en/500L/a-python-interpreter-written-in-python.html 这是源码: https://github.com/nedbat/byter ...
分类:编程语言   时间:2021-06-05 18:30:44    阅读次数:0
小甲鱼二十一讲 :lambda表达式!!!!
0: lambda x:x*3 lambad x,y=3:x*y 1:def findodd(x): if x%2 == 0 return None else: return x 2:几乎不用 3:a=list[filter((lambda x:not(x%3)),range(1,100))] 4: ...
分类:其他好文   时间:2021-06-04 18:55:40    阅读次数:0
HTML-body区域常用标签
HTML-body区域常用标签 文本标签 标题标签 <h1>标题</h1> 字体标签 <b></b><strong>加粗</strong> <sup>上标</sup> <sub>下标</sub> <s>删除线</s> <u>下划线</u> <i></i><em>斜体</em> <code></cod ...
分类:Web程序   时间:2021-06-04 18:43:36    阅读次数:0
VUE 组件内全局变量
<template> <div> </div> </template> <script> var self = this; export default { }; </script> // scoped 样式只在本组件使用 <style scoped> /** * 导入css样式组件 * @impo ...
分类:其他好文   时间:2021-06-02 20:55:34    阅读次数:0
python 装饰器 log
定义logger方法: import loggingimport osimport timeimport utilsdata=time.strftime("%Y-%m-%d-%H:%M:%S")logging.basicConfig(filename=utils.get_project_path() ...
分类:编程语言   时间:2021-06-02 19:50:48    阅读次数:0
Bad habits : Putting NOLOCK everywhere
Bad habits : Putting NOLOCK everywhere [See an index of all bad habits / best practices posts] I went through the archive above, and was quite surpris ...
分类:其他好文   时间:2021-06-02 19:46:42    阅读次数:0
6915条   上一页 1 2 3 4 5 ... 692 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!