package mytest; public class TestInteger { public static void main(String args[]) { Integer a =127; Integer b =127; System.out.println(a==b); a=128; b ...
分类:
其他好文 时间:
2021-01-13 11:22:55
阅读次数:
0
类图 源代码 User类 import java.util.Scanner; public class User extends Player{ public String sayName(){ System.out.println("请输入您的名字:"); Scanner input = new ...
分类:
其他好文 时间:
2021-01-13 11:06:51
阅读次数:
0
1 . == 和 equals 的区别是什么? 基本类型: 比较的是值是否相同; 引用类型: 比较的是引用是否相同; 2 . 一下代码: String x = "Jerry"; String y = "Jerry"; String z = new String("Jerry"); System.ou ...
分类:
编程语言 时间:
2021-01-12 11:24:09
阅读次数:
0
先导包,pip install torchsummary 然后 from torchsummary import summary model = FPN() y = summary(model, (3, 224, 224), device="cpu") print(y) ...
分类:
其他好文 时间:
2021-01-12 11:17:57
阅读次数:
0
前言 ? 操作系统以及Mysql数据库的实时性能状态数据尤为重要,特别是在有性能抖动的时候,这些实时的性能数据可以快速帮助你定位系统或Mysql数据库的性能瓶颈,镜像你在Linux系统上使用top、iostat等命令工具一样,可以立刻定位OS的性能瓶颈是在I/O还是CPU上,所以手机和展示这些性能数 ...
分类:
数据库 时间:
2021-01-12 11:16:42
阅读次数:
0
import java.io.*; import org.junit.Test; public class ByteArrayOutputStreamTest { @Test public void test1() throws Exception { //创建文件输入字节流 文件在model下 F ...
分类:
其他好文 时间:
2021-01-12 11:13:28
阅读次数:
0
public string GetMD5(string txt) { System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] frmData ...
前言 获取root权限,解锁system 步骤 手机设置 设置——更多设置——开发者选项——USB调试给打开 电脑操作 打开cmd adb devices 执行命令 adb root && adb disable-verity && adb reboot 手机会自动重启 参考: https://bl ...
分类:
其他好文 时间:
2021-01-12 10:57:12
阅读次数:
0
起因 折腾一下老手机 刷机流程 解BL锁 刷入第三方REC 手机分区 分区 含义 /recovery Android刷机功能(对数据、系统进行修改的模式) /boot Android的引导程序 /system Android操作系统 /data 保存着用户数据 (通讯录、短信、app) /cache ...
分类:
其他好文 时间:
2021-01-12 10:56:40
阅读次数:
0
一. lscpu命令 lscpu是显示的cpu物理信息 二.cat /proc/cpuinfo cat /proc/cpuinfo 也是查看cpu物理信息,基本与lscpu相同 ...
分类:
其他好文 时间:
2021-01-12 10:55:38
阅读次数:
0