效果图: <!--联系我们开始 --> <div class="linkus container "> <div class="linkUsCon cl"> <div class="bd fl"> <div class="lines"> <span>姓名:</span> <input type="t ...
分类:
Web程序 时间:
2021-01-14 10:40:24
阅读次数:
0
重写 public class B { public static void test(){ System.out.println("B=>test()"); } } public class A extends B { public static void test(){ System.out.p ...
分类:
编程语言 时间:
2021-01-14 10:38:57
阅读次数:
0
Git 是最先进的开源分布式版本控制系统,最初由 Linus 为解决 Linux 的代码管理而发明。版本控制系统(Version Control System, VCS)有很多实现,比如早期的 CVS,主要用于控制、协调文件的一致性。目前使用最多的主要是 SVN 和 Git。 SVN vs Git ...
分类:
其他好文 时间:
2021-01-13 11:30:39
阅读次数:
0
<!-- 引入自己封装的 Ajax文件 测试下怎么用 --> <script src="myAjax.js"></script> <script> window.addEventListener('load', function() { var btn = document.querySelecto ...
分类:
Web程序 时间:
2021-01-13 11:30:00
阅读次数:
0
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
Zadig是Windows应用程序,它用来安装通用USB驱动程序,例如WinUSB, libusb-win32 / libusb0.sys或libusbK,以帮助您访问USB设备。 对于以下情况尤其有用: 您想要使用基于libusb的应用程序访问设备 您要升级通用USB驱动程序 您要使用WinUSB ...
分类:
其他好文 时间:
2021-01-13 11:19:49
阅读次数:
0
一、Selenium 环境部署 1. window 环境部署 1.1 当前环境 Win10 64 位系统;Python3.6.2(官方已经更新到了 3.6.4) 官方下载地址:https://www.python.org/downloads Selenium 3.4.3;谷歌 59。 1.2 Pyt ...
分类:
编程语言 时间:
2021-01-13 11:08:49
阅读次数:
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
获取样式 window.getComputedStyle(标签.想要获取的属性) //后面的.可加可不加 var obj = window.getComputedStyle(box); console.log( window.getComputedStyle(box) ); console.log( ...
分类:
其他好文 时间:
2021-01-13 10:31:56
阅读次数:
0
1 . == 和 equals 的区别是什么? 基本类型: 比较的是值是否相同; 引用类型: 比较的是引用是否相同; 2 . 一下代码: String x = "Jerry"; String y = "Jerry"; String z = new String("Jerry"); System.ou ...
分类:
编程语言 时间:
2021-01-12 11:24:09
阅读次数:
0