• 2024-05-29What a floor washer?
    Whatafloorwasher?Theterm“Scrubber”isusedtodescribewhatwecallanautomaticscrubber.Essentially,itsamopandbucketsubstituteforapowerful,efficientcleaner.Thescrubberperformsthreemaintaskssimultaneously:1.Itprovidesacleani
  • 2024-05-05async await(python)
    简单记录一下asyncawait在Python中的用法以洗衣机洗衣服为例,假设有3台洗衣机,每台洗衣机都需要洗一些衣服一种做法就是依次启动每一台洗衣机,当一台洗衣机结束任务后,开始下一台fromtimeimportsleep,timedeflaundry():defwasher1():print('washeronebeg
  • 2023-05-07命名空间
    参考资料:6-命名空间_哔哩哔哩_bilibili1、什么是命名空间?一个区域、一个包裹、一个作用域、一个范围2、举例#include<iostream>namespacekkb{classWasher{public:std::stringstr;intvol;voidgetstr();voidwash();};v
  • 2022-11-20特殊功能的函数(魔法方法)
    在python中,_XX_()的函数叫做魔法方法,指的是具有特殊功能的函数。1、_init_()1.1体验_init_()作用:初始化对象 #目标:定义init魔法方法设置初始化属性,并访问调用
  • 2022-11-17面向对象基础
    一、理解面向对象面向对象就是将编程当成是一个事物,对外界来说,事物是直接使用的,不用去管它内部的情况。而编程就是设置事物能够做什么事。二、类和对象在面向对