搜索结果
查询Tags标签: SomeThing,共有 20条记录-
Python---day8作业
1.定义一个类(不限定定义哪个类): 要求: a.需要有一个类变量 b.需要有>=2个的对象变量 c.定义一个方法:打印类变量和对象变量 d.使用print打印对象->输出为This is a object e.实例化两个对象:且两个对象相加等于2 f.为对象添加一个临时变量temp_var class Perso…
2021/11/11 1:11:49 人评论 次浏览 -
Python---day8作业
1.定义一个类(不限定定义哪个类): 要求: a.需要有一个类变量 b.需要有>=2个的对象变量 c.定义一个方法:打印类变量和对象变量 d.使用print打印对象->输出为This is a object e.实例化两个对象:且两个对象相加等于2 f.为对象添加一个临时变量temp_var class Perso…
2021/11/11 1:11:49 人评论 次浏览 -
【Linux】学习笔记(七) Linux 文件打包解压
常用压缩文件格式 文件后缀名 说明 *.zip zip 程序打包压缩的文件 *.rar rar 程序压缩的文件 *.7z 7zip 程序压缩的文件 *.tar tar 程序打包,未压缩的文件 *.gz gzip 程序(GNU zip)压缩的文件 *.xz xz 程序压缩的文件 *.bz2 bzip2 程序压缩的文件 *.tar.gz tar 打包,…
2021/7/9 7:10:41 人评论 次浏览 -
C++ 系统宏定义 windows mac linux android ios
C++ 系统宏定义#ifdef _WIN32//define something for Windows (32-bit and 64-bit, this part is common)#ifdef _WIN64//define something for Windows (64-bit only)#else//define something for Windows (32-bit only)#endif #elif __APPLE__#include "TargetCond…
2021/6/2 7:22:25 人评论 次浏览 -
Java内存访问重排序的研究
什么是重排序 请先看这样一段代码1 public class PossibleReordering { static int x = 0, y = 0; static int a = 0, b = 0;public static void main(String[] args) throws InterruptedException {Thread one = new Thread(new Runnable() {public void run() {a = 1;x …
2021/5/12 7:27:16 人评论 次浏览