linux app read kernel log man klogctl: int klogctl(int type, char *bufp, int len); SYSLOG(2) Linux Programmer's Manual SYSLOG(2) NAME syslog, klogctl ...
分类:
移动开发 时间:
2021-05-24 09:35:18
阅读次数:
0
Pytest源码分析 By:授客 QQ:1033553122 测试环境 pytest 5.4.3 测试脚本mytest.py #!/usr/bin/env python # -*- coding:utf-8 -*- import pytest def test_func(): # test开头的测试 ...
分类:
其他好文 时间:
2021-03-02 12:31:05
阅读次数:
0
language: C address // nt题,不解释 /** * Note: The returned array must be malloced, assume caller calls free(). */ int* printNumbers(int n, int* returnSiz ...
分类:
其他好文 时间:
2021-01-26 12:26:48
阅读次数:
0
/** * Note: The returned array must be malloced, assume caller calls free(). */ #define MAX_IP_ADR 1000 #if 0 int IsValid(char* s, int i, int j) { int ...
分类:
其他好文 时间:
2020-12-01 12:10:43
阅读次数:
10
【原创】Java并发编程系列33|深入理解线程池(上)收录于话题#并发编程238#程序员2286#java976#进阶架构师|并发编程专题12★★★建议星标我们★★★公众号改版后文章乱序推荐,希望你可以点击上方“Java进阶架构师”,点击右上角,将我们设为★“星标”!这样才不会错过每日进阶架构文章呀。2020年Java原创面试题库连载中【000期】Java最全面试题库思维导图【001期】JavaS
分类:
编程语言 时间:
2020-11-24 12:57:29
阅读次数:
12
es3和es5产生冲突的部分使用es5的方法,否则使用es3 “use strict” 变量赋值前必须声明,var a=b=2;(b没有定义) 局部this必须被赋值 赋给什么就是什么 拒绝重复属性和参数 arguments.calle 不能被使用 function.caller with:改变作用 ...
分类:
其他好文 时间:
2020-07-26 15:36:32
阅读次数:
53
解题思路: 题目要求的二叉树的 从上至下 打印(即按层打印),又称为二叉树的 广度优先搜索(BFS)。 BFS 通常借助 队列 的先入先出特性来实现。 算法流程:特例处理: 当树的根节点为空,则直接返回空列表 [] ;初始化: 打印结果列表 res = [] ,包含根节点的队列 queue = [r ...
分类:
其他好文 时间:
2020-07-14 00:36:31
阅读次数:
69
在es5严格模式下,es3和es5产生冲突时,用es5的语法;否则用es3的语法 1、启动es5严格模式 "use strict" 写在js文件代码块的最顶端或函数代码块的最顶端 2、es5禁用的语法 不支持with、arguments.callee、func.caller、变量赋值前必须声明、局部 ...
分类:
其他好文 时间:
2020-07-10 22:43:04
阅读次数:
78
第1关:继承 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace K1 { public abstr ...
当我们在调试的时候,想获取这个函数被哪个函数调用,以方便调试,但是 caller属性被严格模式下被禁用了 我们可以通过 (new Error()).stack.split("\n")[2].trim().split(" ")[1]方法来获取调用当前函数的那个函数名 解释:new Error().st ...
分类:
Web程序 时间:
2020-06-10 11:17:39
阅读次数:
105