06 2022 档案
摘要:1.学生类 package com.oop.Demo02; // 学生类 public class Student { // 属性 String name; // 姓名 int age; // 年龄 // 方法 public void study(){ System.out.println(this
阅读全文
摘要:SSH9.0 RPM安装包制作 cat > 01-ssh9.0-upgrade.sh << 'EOF' #!/bin/bash # 1. 安装依赖 yum install -y rpm-build gcc gcc-c++ glibc glibc-devel openssl-devel openssl
阅读全文
摘要:重要概念 - Association Association 是DICOM中定义的通信管道。在DICOM定义的通信协议中,提供服务的被称为 Service Class Provider (SCP), 消费服务的被称为 Service Class User (SCU)。这和我们HTTP中的server
阅读全文
摘要:# yum安装 yum install -y python3 python3-devel # 编辑YUM [root@www ~]# cat /usr/bin/yum #!/usr/bin/python2.7 # 升级PIP [root@www ~]# pip3 install --upgrade
阅读全文