你有一个思想,我有一个思想,我们交换后,一个人就有两个思想IfyoucanNOTexplainitsimply,youdoNOTunderstanditwellenough现陆续将Demo代码和技术文章整理在一起Github实践精选,方便大家阅读查看,本文同样收录在此,觉得不错,还请Star前言创建线程有几种方式?这个问题的答案应该是可以脱口而出的吧继承Thread类实现Runnable接口但这两
分类:
编程语言 时间:
2020-07-31 01:16:19
阅读次数:
87
location /php/ { alias /usr/share/nginx/php/; index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^/php/(.*)$ /php/index.php?s= ...
分类:
其他好文 时间:
2020-07-30 22:05:36
阅读次数:
75
####js 用户填写非空验证 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form action="index.html" method="get" onsubmit="r ...
分类:
Web程序 时间:
2020-07-30 14:46:28
阅读次数:
78
1,内部引用 js可以在<head> <script><script> </head>中引用, 也可以在body中引用 <body> <script><scipt> </body> 2,外部引用 <!DOCUTYPE HTML> <html> <head> <meta charest="utf-8" ...
分类:
Web程序 时间:
2020-07-30 14:43:01
阅读次数:
80
Symbol: 一种新的原始数据类型,Symbol不是一个对象,不可以new Symbol的声明方式: const s1 = Symbol('s1') const s2 = Symbol('s1') console.log(typeof s1) console.log(s1 s2) // false ...
分类:
其他好文 时间:
2020-07-30 14:24:11
阅读次数:
62
(1)无边框窗口的拖动事件 新建一个MenuStrip,然后注册其MouseMove与MouseDown事件 private Point formPoint = new Point(); public MainForm() { InitializeComponent(); } private voi ...
前端三要素: html:木偶 css:化妆 javascript:动态展示(跳舞)css: 1.什么是css? cascading style sheets 层叠样式表 2.css的语法 1.属性名和属性值之间使用:隔开 多对属性之间使用;隔开 最后一对属性可以不加分号 id="one" class ...
分类:
Web程序 时间:
2020-07-30 01:22:39
阅读次数:
107
1什么是JavaScript JavaScript是一种基于对象和事件驱动的、并具有安全性能的脚本语言 1.1JavaScript特点 向HTML页面中添加交互行为 脚本语言,语法和Java类似 解释性语言,边执行边解释 1.2JavaScript组成 2JavaScript的基本结构 ...
分类:
编程语言 时间:
2020-07-29 15:13:26
阅读次数:
56
package ahaAlgorithm.chapter1; import java.util.Scanner; /** * * @Title: BubbleSort1.java * @Package ahaAlgorithm.chapter1 * @Description: TODO(类在排序中的 ...
分类:
编程语言 时间:
2020-07-29 14:38:19
阅读次数:
57