全网最全面的pytest测试框架进阶-conftest文件重写采集和运行测试用例的hook函数

news2024/11/20 7:17:12

【文章末尾有.......】

使用pytest不仅仅局限于进行单元测试,作为底层模块可扩展性强,有必要理解其运行机制,便于进行二次开发扩展,通过文档的学习很容易理解。

构建一个简单的测试脚本

import pytest
import requests

def add(a,b):
    if type(a) is str or type(b) is str:
        return str(a) + str(b)
    return a+b

def chengfa(a,b):
    if type(a) is str or type(b) is str:
        return 0
    return a*b

class TestMath(object):

    @pytest.fixture(scope='session',autouse=True)
    def starter(self):
        print('开始')
        yield
        print('结束')

    def testadd(self):
        '''测试加法程序'''
        print("正在执行testadd")
        assert add('a',1) == 'a1'
        print("验证成功")

    def testchengfa(self):
        '''测试加法程序'''
        print("正在执行testadd")
        assert chengfa('a',1) == 'a'
        print("验证成功")

if __name__ == '__main__':
    pytest.main(['-s','testmath.py'])

采集测试用例相关函数

@pytest.hookimpl(hookwrapper=True)
def pytest_collection(session):
    print("当前运行"+sys._getframe().f_code.co_name)
    print('启动测试采集器'+str(session))
    result = yield
    print('最终测试采集结果' + str(session.items))
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")


@pytest.hookimpl(hookwrapper=True)
def pytest_collectstart(collector):
    print("当前运行" + sys._getframe().f_code.co_name)
    print("当前节点" +collector.nodeid)
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_make_collect_report(collector):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print("当前节点" +result.get_result().nodeid + ",采集结果:"+result.get_result().outcome+ ",采集节点为:"+str(result.get_result().result))
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_pycollect_makemodule(path, parent):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('在目录' + str(parent.fspath) + '采集到测试脚本'+str(path))
    result = yield
    print('当前采集模块' + result.get_result().nodeid)
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_generate_tests(metafunc):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_collectreport(report):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('在节点' + report.nodeid + '采集到' + str(report.result))
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_collection_modifyitems(session, config, items):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print('测试顺序为'+ str(items))
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")



@pytest.hookimpl(hookwrapper=True)
def pytest_collection_finish(session):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print('用例采集完成')
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

pytest_collection(session)

执行给定会话的采集协议。循环运行pytest_collectstart,pytest_make_collect_report遍历查找测试用例,直到所有用例采集成功

session:Session对象,基类_pytest.nodes.FSCollector

pytest_collectstart(collector)

Collector开始采集。

collector:Collector对象

采集器实例通过collect()创建子项,从而迭代地构建树。意思就是来寻找符合规则的测试节点变成Collector的nodeid,给pytest_make_collect_report使用。

pytest_make_collect_report(collector)

执行collector.collect()并返回CollectReport对象。返回采集当前节点采集测试节点是否成功,如果当前采集到节点是方法,会运行pytest_generate_tests生成测试用例对象。

pytest_pycollect_makemodule(path, parent) 

path:pytest测试的根目录,也可通过命令行设置,例如pytest C://xxx.py,path就为C://xxx.py

parent:任何新节点都需要将指定parent的父节点作为父节点

根据path目录向下查找,提取存在测试类的py文件。将为每个匹配的测试模块路径调用此Hook方法。如果要为不匹配的文件创建测试模块作为测试模块,则需要使用pytest_collect_fileHook方法。

pytest_collectreport(report)

report:CollectReport对象采集报告

Collector完成采集时调用,pytest_make_collect_report采集结果成功或失败,失败则报异常

pytest_generate_tests(metafunc)

metafunc: Metafunc对象。

生成测试用例的方法,将自定义的fixture、parameters给测试函数调用变成测试用例对象。

pytest_collection_modifyitems(session, config, items):

config:Config对象,根据配置进行相应行为

 在执行收集后调用,可以就地过滤或重新排序项目。

pytest_collection_finish(session)

返回最终采集结果及数量

运行测试用例相关函数

@pytest.hookimpl(hookwrapper=True)
def pytest_runtestloop(session):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('开始测试测试用例集合' + str(session.items))
    result = yield
    print('测试用例集合测试结果为' + str(session))
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_protocol(item,nextitem):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('开始测试用例:'+str(item.name))
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_setup(item):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('执行setup模块')
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_call(item):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_teardown(item):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('执行teardown模块')
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_fixture_post_finalizer(fixturedef,request):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('开始卸载fixture模块-' + str(request.fixturename))
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_fixture_setup(fixturedef,request):
    print("当前运行" + sys._getframe().f_code.co_name)
    # print('开始执行fixture模块-' + str(request.fixturename))
    result = yield
    # if result.excinfo == None:
    #     print(request.fixturename + '运行完毕')
    # else:
    #     print('出现异常' + str(result.excinfo))
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_makereport(item,call):
    print("当前运行" + sys._getframe().f_code.co_name)
    print(str(item.name) + str(call.when) + '运行结束')
    result = yield
    print(result.get_result().when + "阶段测试结果:" + result.get_result().outcome)
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_pyfunc_call(pyfuncitem):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('执行test_模块' + str(pyfuncitem))
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

运行结果

pytest_runtestloop(session)

收集完成后执行所有采集到的测试用例,调用pytest_runtest_protocol循环调用测试用例对象。

pytest_runtest_protocol(item,nextitem)

item:当前测试用例对象

nextitem:下一个测试用例

依次调用pytest_runtest_setup,pytest_runtest_call,pytest_runtest_teardown进行循环测试,本次测试用例运行不出现程序异常就返回true,非错误

pytest_runtest_setup(item)

调用以执行采集的测试项的setup阶段。运行当前的测试用例测试前需要调用pytest_fixture_setup方法运行fixture函数

pytest_runtest_call(item)

调用以执行采集的测试项。

pytest_runtest_teardown

调用以执行采集的测试项的setup阶段。销毁当前的测试用例测试前运行的fixture函数

pytest_fixture_setup(fixturedef,request)

查找并执行所有的fixture函数。

pytest_fixture_post_finalizer(fixturedef,request)

测试用例运行结束后销毁fixture

pytest_pyfunc_call(pyfuncitem: Function)

运行测试方法pyfuncitem

生成测试报告相关函数

@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_logreport(report):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_report_header(config, startdir):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_report_collectionfinish(config, startdir, items) :
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_report_teststatus(report, config):
    print("当前运行" + sys._getframe().f_code.co_name)
    result = yield
    print(result.get_result())
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_assertrepr_compare(config,op,left,right):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('开始断言' + str(left) + str(op) + str(right))
    result = yield
    print('断言结果为:' + str(result.get_result()))
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

@pytest.hookimpl(hookwrapper=True)
def pytest_exception_interact(call, report):
    print("当前运行" + sys._getframe().f_code.co_name)
    print(str(call.excinfo))
    # print(str(report.longreprtext))
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")


@pytest.hookimpl(hookwrapper=True)
def pytest_terminal_summary(terminalreporter,exitstatus,config):
    print("当前运行" + sys._getframe().f_code.co_name)
    print('此次测试结果为' + str(exitstatus))
    print('通过的用例为' + str(terminalreporter.stats['passed']))
    print('失败的用例为' + str(terminalreporter.stats['failed']))
    result = yield
    print("结束运行" + sys._getframe().f_code.co_name)
    print("\n")

pytest_runtest_makereport(item,call)

call:CallInfo对象,可以通过参数查看测试结果/异常信息,具体参数参考CallInfo。

当pytest_runtest_setup,pytest_runtest_call,pytest_runtest_teardown运行完,生成一个TestReport对象。

TestReport对象:基本测试报告对象

pytest_report_teststatus(report, config)

根据pytest_runtest_makereport运行返回测试结果的集合成功为('passed', '.', 'PASSED'),失败为('failed', 'F', 'FAILED')。

pytest_assertrepr_compare(config,op,left,right)

op:比较符号

用例assert时调用,返回失败的断言表达式中的比较解释。

pytest_runtest_logreport(report)

根据report打印测试用例运行结果

pytest_exception_interact(call, report)

pytest_report_teststatus结果运行失败,在引发异常时调用,可以交互式处理。只有在引发的异常不是内部异常, 如skip.Exception时才会调用此Hook方法。

pytest_terminal_summary(terminalreporter,exitstatus,config)

所有用例对象遍历完成后,对结果进行统计报告。

pytest_report_header(config: Config, startdir: py._path.local.LocalPath)

返回要显示为标题信息的字符串或字符串列表,以进行终端报告。

pytest_report_collectionfinish(config: Config, startdir: py._path.local.LocalPath, items: Sequence[Item])

返回成功完成收集后将显示的字符串或字符串列表。

输出结果:

当前运行pytest_report_header
结束运行pytest_report_header

 


rootdir: D:\PycharmProjects\seleniumtest
plugins: allure-pytest-2.8.22, html-3.0.0, metadata-1.10.0
当前运行pytest_collection
启动测试采集器<Session seleniumtest exitstatus=<ExitCode.OK: 0> testsfailed=0 testscollected=0>
当前运行pytest_collectstart
当前节点
结束运行pytest_collectstart

 


当前运行pytest_make_collect_report
当前运行pytest_pycollect_makemodule
在目录D:\PycharmProjects\seleniumtest采集到测试脚本D:\PycharmProjects\seleniumtest\testmath.py
当前采集模块testmath.py
结束运行pytest_pycollect_makemodule

 


当前节点,采集结果:passed,采集节点为:[<Module testmath.py>]
结束运行pytest_make_collect_report

 


当前运行pytest_collectreport
在节点采集到[<Module testmath.py>]
结束运行pytest_collectreport

 


当前运行pytest_collectstart
当前节点testmath.py
结束运行pytest_collectstart

 


当前运行pytest_make_collect_report
当前节点testmath.py,采集结果:passed,采集节点为:[<Class TestMath>]
结束运行pytest_make_collect_report

 


当前运行pytest_collectstart
当前节点testmath.py::TestMath
结束运行pytest_collectstart

 


当前运行pytest_make_collect_report
当前节点testmath.py::TestMath,采集结果:passed,采集节点为:[<Instance ()>]
结束运行pytest_make_collect_report

 


当前运行pytest_collectstart
当前节点testmath.py::TestMath
结束运行pytest_collectstart

 


当前运行pytest_make_collect_report
当前运行pytest_generate_tests
结束运行pytest_generate_tests

 


当前运行pytest_generate_tests
结束运行pytest_generate_tests

 


当前节点testmath.py::TestMath,采集结果:passed,采集节点为:[<Function testadd>, <Function testchengfa>]
结束运行pytest_make_collect_report

 


当前运行pytest_collectreport
在节点testmath.py::TestMath采集到[<Function testadd>, <Function testchengfa>]
结束运行pytest_collectreport

 


当前运行pytest_collectreport
在节点testmath.py::TestMath采集到[<Instance ()>]
结束运行pytest_collectreport

 


当前运行pytest_collectreport
在节点testmath.py采集到[<Class TestMath>]
结束运行pytest_collectreport

 


当前运行pytest_collection_modifyitems
测试顺序为[<Function testadd>, <Function testchengfa>]
结束运行pytest_collection_modifyitems

 


当前运行pytest_collection_finish
collected 2 items
当前运行pytest_report_collectionfinish
结束运行pytest_report_collectionfinish

 


用例采集完成
结束运行pytest_collection_finish

 


最终测试采集结果[<Function testadd>, <Function testchengfa>]
结束运行pytest_collection

 


当前运行pytest_runtestloop
开始测试测试用例集合[<Function testadd>, <Function testchengfa>]
当前运行pytest_runtest_protocol
开始测试用例:testadd

 

testmath.py 当前运行pytest_runtest_setup
执行setup模块
当前运行pytest_fixture_setup
开始执行fixture模块-starter
开始
starter运行完毕
结束运行pytest_fixture_setup

 


结束运行pytest_runtest_setup

 


当前运行pytest_runtest_makereport
testaddsetup运行结束
setup阶段测试结果:passed
结束运行pytest_runtest_makereport

 


当前运行pytest_runtest_logreport
当前运行pytest_report_teststatus
('', '', '')
结束运行pytest_report_teststatus

 


结束运行pytest_runtest_logreport

 


当前运行pytest_runtest_call
当前运行pytest_pyfunc_call
执行test_模块<Function testadd>
正在执行testadd
验证成功
结束运行pytest_pyfunc_call

 


结束运行pytest_runtest_call

 


当前运行pytest_runtest_makereport
testaddcall运行结束
call阶段测试结果:passed
结束运行pytest_runtest_makereport

 


当前运行pytest_runtest_logreport
当前运行pytest_report_teststatus
('passed', '.', 'PASSED')
结束运行pytest_report_teststatus

 


.结束运行pytest_runtest_logreport

 


当前运行pytest_runtest_teardown
执行teardown模块
结束运行pytest_runtest_teardown

 


当前运行pytest_runtest_makereport
testaddteardown运行结束
teardown阶段测试结果:passed
结束运行pytest_runtest_makereport

 


当前运行pytest_runtest_logreport
当前运行pytest_report_teststatus
('', '', '')
结束运行pytest_report_teststatus

 


结束运行pytest_runtest_logreport

 


结束运行pytest_runtest_protocol

 


当前运行pytest_runtest_protocol
开始测试用例:testchengfa
当前运行pytest_runtest_setup
执行setup模块
结束运行pytest_runtest_setup

 


当前运行pytest_runtest_makereport
testchengfasetup运行结束
setup阶段测试结果:passed
结束运行pytest_runtest_makereport

 


当前运行pytest_runtest_logreport
当前运行pytest_report_teststatus
('', '', '')
结束运行pytest_report_teststatus

 


结束运行pytest_runtest_logreport

 


当前运行pytest_runtest_call
当前运行pytest_pyfunc_call
执行test_模块<Function testchengfa>
正在执行testadd
当前运行pytest_assertrepr_compare
开始断言0==a
断言结果为:[]
结束运行pytest_assertrepr_compare

 


结束运行pytest_pyfunc_call

 


结束运行pytest_runtest_call

 


当前运行pytest_runtest_makereport
testchengfacall运行结束
call阶段测试结果:failed
结束运行pytest_runtest_makereport

 


当前运行pytest_runtest_logreport
当前运行pytest_report_teststatus
('failed', 'F', 'FAILED')
结束运行pytest_report_teststatus

 


F结束运行pytest_runtest_logreport

 


当前运行pytest_exception_interact
<ExceptionInfo AssertionError("assert 0 == 'a'\n + where 0 = chengfa('a', 1)") tblen=1>
结束运行pytest_exception_interact

 


当前运行pytest_runtest_teardown
执行teardown模块
结束
当前运行pytest_fixture_post_finalizer
开始卸载fixture模块-starter
结束运行pytest_fixture_post_finalizer

 


当前运行pytest_fixture_post_finalizer
开始卸载fixture模块-starter
结束运行pytest_fixture_post_finalizer

 


结束运行pytest_runtest_teardown

 


当前运行pytest_runtest_makereport
testchengfateardown运行结束
teardown阶段测试结果:passed
结束运行pytest_runtest_makereport

 


当前运行pytest_runtest_logreport
当前运行pytest_report_teststatus
('', '', '')
结束运行pytest_report_teststatus

 


结束运行pytest_runtest_logreport

 


结束运行pytest_runtest_protocol

 


测试用例集合测试结果为<Session seleniumtest exitstatus=<ExitCode.OK: 0> testsfailed=1 testscollected=2>
结束运行pytest_runtestloop

 

 


================================== FAILURES ===================================
____________________________ TestMath.testchengfa _____________________________

 

self = <testmath.TestMath object at 0x039F6BD0>

 

def testchengfa(self):
'''测试加法程序'''
print("正在执行testadd")
> assert chengfa('a',1) == 'a'
E AssertionError: assert 0 == 'a'
E + where 0 = chengfa('a', 1)

 

testmath.py:31: AssertionError
当前运行pytest_terminal_summary
此次测试结果为ExitCode.TESTS_FAILED
通过的用例为[<TestReport 'testmath.py::TestMath::testadd' when='call' outcome='passed'>]
失败的用例为[<TestReport 'testmath.py::TestMath::testchengfa' when='call' outcome='failed'>]
结束运行pytest_terminal_summary

 


当前运行pytest_report_teststatus
('failed', 'F', 'FAILED')
结束运行pytest_report_teststatus

 


=========================== short test summary info ===========================
FAILED testmath.py::TestMath::testchengfa - AssertionError: assert 0 == 'a'
========================= 1 failed, 1 passed in 0.12s =========================

  重点:学习资料学习当然离不开资料,这里当然也给你们准备了600G的学习资料

【需要的可以扫描文章末尾的qq群二维码自助拿走】

【记得(备注“csdn000”)】

【或私信000】

群里的免费资料都是笔者十多年测试生涯的精华。还有同行大神一起交流技术哦。

项目实战:

大型电商平台:

全套软件测试自动化测试教学视频

300G教程资料下载【视频教程+PPT+项目源码】

全套软件测试自动化测试大厂面经

python自动化测试++全套模板+性能测试

听说关注我并三连的铁汁都已经升职加薪暴富了哦!!!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/408.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Hive数据倾斜常见场景及解决方案(超全!!!)

Hive数据倾斜常见问题和解决方案 文章目录 前言、一、Explain二、数据倾斜&#xff08;常见优化&#xff09;前言 Hive数据倾斜是面试中常问的问题&#xff0c;这里我们需要很熟练地能举出常见的数据倾斜的例子并且给出解决方案。 一、Explain 我们可以通过sql语句前面加expa…

公众号网课查题搭建方法

公众号网课查题搭建方法 本平台优点&#xff1a; 多题库查题、独立后台、响应速度快、全网平台可查、功能最全&#xff01; 1.想要给自己的公众号获得查题接口&#xff0c;只需要两步&#xff01; 2.题库&#xff1a; 查题校园题库&#xff1a;查题校园题库后台&#xff08;…

QLC 闪存给主控带来了很大的难题?

前言 世界各大主流闪存厂商&#xff0c;如美光、海力士、铠侠和长江存储积极致力于QLC的研发&#xff0c;并相继推出了QLC SSD 产品。随着技术的不断进步&#xff0c;人们普遍担心的QLC擦写寿命少正逐渐被改善。QLC SSD 成本是最大的优势&#xff0c;不指望说替代 TLC SSD&…

408 | 【2011年】计算机统考真题 自用回顾知识点整理

选择题 T3&#xff1a;循环队列 不同指针指向&#xff0c;队列判空/判满条件 1. rear:指向队尾元素 front:指向队头元素前一个位置 &#xff08;1&#xff09;牺牲一个存储空间 &#xff08;2&#xff09;判空条件&#xff1a;front rear &#xff08;3&#xff0…

【RHCSA】管理Linux的联网

目录 rhel8与旧版本的区别 NetworkManager的特点 配置网络 (1)使用P命令配置临时生效的网络连接 (2)修改配置文件&#xff0c;前提是需要有network服务[不推荐] (3)nmcli(命令行工具) 网络测试命令 Ⅰ、使用ping命令测试网络的连通性 Ⅱ、使用tracepath命令跟踪并显示网…

2023最新SSM计算机毕业设计选题大全(附源码+LW)之java危险品运输车辆信息管理系统b2z1o

大学毕业设计&#xff0c;一般都是自己或者几个同学一起弄&#xff0c;lunwen都是去&#xff0c;百度&#xff0c;图书馆找很多资料参考&#xff0c;&#xff08;就是把里面都了&#xff0c;自己再按照各个意思重新表达&#xff09;&#xff0c;但是前提&#xff0c;提纲要想好…

【附源码】计算机毕业设计SSM微课程服务系统

项目运行 环境配置&#xff1a; Jdk1.8 Tomcat7.0 Mysql HBuilderX&#xff08;Webstorm也行&#xff09; Eclispe&#xff08;IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持&#xff09;。 项目技术&#xff1a; SSM mybatis Maven Vue 等等组成&#xff0c;B/S模式 M…

神经网络芯片的单片机,什么是神经网络芯片

1、神经网络做图像分类一定要用到gpu吗&#xff1f; GPU最大的价值一直是“accelerating”(加速)&#xff0c;GPU不是取代CPU&#xff0c;而是利用GPU的并行计算架构&#xff0c;来将并行计算的负载放到GPU上来处理从而极大的提升处理速度。GPU本质上在异构计算架构上属于协处…

Hello Word你真的理解了么?今天教我的表弟,有些感悟

&#x1f36c;博主介绍 &#x1f468;‍&#x1f393; 博主主页&#xff1a;喵的主页 ✨主攻领域&#xff1a;【大数据】【java】【python】【面试分析】 Hello world1. 编写程序2. 打开命令行3. 运行 .class 文件4. 排查错误1. 编写程序 是不是都忘了我们初学时是打开记事本的…

9-1 Kubernetes二进制部署的Prometheus实现服务发现

文章目录前言创建用户复制Token配置文件全局配置Master节点发现Node节点发现Namespace Pod发现自定义Pod发现前言 在上一章节介绍了 8-5 在Prometheus实现Kubernetes-apiserver及Coredns服务发现 基于K8s集群内部安装的Prometheus&#xff0c;添加服务发现时更加方便。Prometh…

二叉树遍历原理 | 深度优先-广度优先 | 栈-队列

&#x1f497;wei_shuo的个人主页 &#x1f4ab;wei_shuo的学习社区 &#x1f310;Hello World &#xff01; 14天阅读挑战赛 文章目录二叉树遍历原理队列和栈区别深度优先遍历(DFS)前序遍历(根-左-右)中序遍历(左-根-右)后序遍历(左-右-根)广度优先遍历(BFS)逐层遍历(上-下 | …

软件研发人效提升之道,法,术,器,势

在华为的寒气传递之前&#xff0c;笔者已经在思考和实战如何提高研发人效。目的目标很明确: 提高软件研发人效&#xff0c;所谓的软件人效&#xff0c;简单粗暴的定义就是以最低单位人均成本&#xff0c;快速&#xff0c;高质量&#xff0c;高频率&#xff0c;安全地交付软件产…

C++笔记之bitset使用

C++笔记之bitset使用 文章目录 C++笔记之bitset使用0.进制介绍1.cppreference2.常规使用3.用法总结3.1.bitset是什么3.2.使用方法3.3.相关使用函数3.4.转换函数0.进制介绍 1.cppreference

C语言高级教程-C语言数组(五):二维(多维)数组初始化和基于数组的综合实例->帽子选购问题

C语言高级教程-C语言数组&#xff08;五&#xff09;&#xff1a;二维&#xff08;多维&#xff09;数组初始化和基于数组的综合实例->帽子选购问题一、本文的编译环境二、二维数组的初始化三、三维数组的初始化四、使用for循环求三维数组元素值的和4.1、for循环求数组元素值…

行业周期分析的主要内容,怎么分析行业生命周期

如何分析经济周期&#xff1f; 很多人认为经济周期分析很难&#xff0c;很复杂。但是作为一个投资者&#xff0c;必须了解一定的经济周期分析原理。所以今天康少就用一张图来简单讲解下经济周期的分析。 一、经济周期判断1、经济趋向繁荣&#xff1a;普通股收益将大幅提高&am…

第07篇:巧用Spring类型转换, ConverterFormatter知识点学习。

公众号: 西魏陶渊明 CSDN: https://springlearn.blog.csdn.net 天下代码一大抄, 抄来抄去有提高, 看你会抄不会抄&#xff01; 文章目录一、前言1.1 类型转换1.2 格式化输出二、Converter 类型转换2.1 Converter2.1.1 接口定义2.1.2 接口功能2.2 ConverterFactory2.2.1 接口定义…

java8特性,lambda表达式,简写的演变及应用

&#x1f36c;博主介绍 &#x1f468;‍&#x1f393; 博主主页&#xff1a;chad_chang的主页 ✨主攻领域&#xff1a;【大数据】【java】【python】【面试分析】 文章目录lambda表达式1.1.简介1.1.1.什么是Lambda&#xff1f;1.1.2.为什么使用Lambda1.1.3.Lambda对接口的要求1…

【Linux】特别篇--SMBus 协议

【Linux】特别篇--SMBus 协议一、SMBus 简介二、SMBus 与 I2C 区别三、SMBus协议分析3.1 符号含义3.2 SMBus Quick Command3.3 SMBus Receive Byte3.4 SMBus Send Byte3.5 SMBus Read Byte3.6 SMBus Read Word3.7 SMBus Write Byte3.8 SMBus Write Word3.9 SMBus Block Read3.1…

672页21万字智慧高速数据中心大数据平台建设方案

目 录 第1章 设计总述 6 1.1 项目概述 6 1.1.1 项目名称 6 1.1.2 建设单位概况 6 1.1.3 公司具备的优势 6 1.2 对项目的理解分析 7 1.2.1 项目现状分析 7 1.2.2 建设目标分析 10 1.2.3 建设内容分析 13 1.2.4 项目建设重难点分析 19 1.2.5 项目风险分析 22 1.2.6 各中心职能需求…

python控制台颜色输出设置

python控制台颜色输出设置 控制台输出内容的颜色有前景色与背景色 控制台的展示效果有限&#xff0c;并不能像前端一样炫酷&#xff0c;只能做一些简单的设置 原理 python终端的字符颜色是用转义序列控制的&#xff0c;是文本模式下的系统显示功能&#xff0c;和具体的语言无…