码迷,mamicode.com
首页 >  
搜索关键字:静态编辑框 static text    ( 96685个结果
linux线程私有数据---TSD
linux线程私有数据 TSD 进程内的所有线程共享进程的数据空间,所以全局变量为所有线程共有。在某些场景下,线程需要保存自己的私有数据,这时可以创建线程私有数据(Thread-specific Data)TSD来解决。在线程内部,私有数据可以被线程的各个接口访问,但对其他线程屏蔽。 线程私有数据采 ...
分类:编程语言   时间:2021-07-02 15:35:15    阅读次数:0
二叉树的前、中、后序排列
import lombok.*; /** * @author: Small sunshine * @Description: * @date: 2021/6/30 8:05 下午 */ public class SortTree { public static void main(String[] ...
分类:其他好文   时间:2021-07-01 17:04:50    阅读次数:0
iOS键盘处理
#pragma mark - TextViewDelegate - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if ( ...
分类:移动开发   时间:2021-07-01 17:00:12    阅读次数:0
Sublime Text批量删除空白行
Sublime Text批量删除空白行 替换处理 CTRL+H 打开 replace 功能,勾选上左侧的 regular expression,并填写 find what栏: \s+$ (正则表达式) replace with栏: (这行留空) 接着点 replace all 修改保存时配置 点击菜 ...
分类:其他好文   时间:2021-07-01 16:49:01    阅读次数:0
设计模式-七大设计原则-依赖倒转原则
一、依赖倒转原则介绍 二、依赖倒转原则引入 1.方式一(传统方式) public class DependencyInversion { public static void main(String[] args) { Person person = new Person(); person.rec ...
分类:其他好文   时间:2021-07-01 16:40:10    阅读次数:0
HTML5-03
学习HTML5的第三天: 1.带样式的表格表单 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表格表单</title> <style type="text/css"> tr { border: none; height: 30 ...
分类:Web程序   时间:2021-07-01 16:36:54    阅读次数:0
设计模式-七大设计原则-单一职责原则
一、单一职责原则介绍 二、单一职责原则引入 1.方式一(违反了单一职责原则) 解析:摩托车、汽车是公路上运行的,但飞机并不是在公路上运行的。 public class SingleResponsibility1 { public static void main(String[] args) { / ...
分类:其他好文   时间:2021-07-01 16:31:05    阅读次数:0
快照劫持的原理与JS跳转的分析
近日,查看网站快照时,发现从百度快照页点击过去后,都跳转到了一个体裁站,但是直接访问,没有任何跳转,打开页面发现有一个js文件被篡改了。代码如下: 1 <script type="text/javascript"> 2 var je1 = /(sogou|soso|baidu|google|youd ...
分类:Web程序   时间:2021-07-01 16:30:31    阅读次数:0
winform 使用Thread.Sleep界面卡死 使用 Application.DoEvents 方法防止UI假死
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:移动开发   时间:2021-07-01 16:29:40    阅读次数:0
前端基础---垂直外边距的重叠
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>垂直外边距的重叠</title> <style type="text/css"> .box1{ /* 为上面的元素设置一个下外边距 */ width: 100px; height: ...
分类:其他好文   时间:2021-07-01 16:28:08    阅读次数:0
96685条   上一页 1 ... 5 6 7 8 9 ... 9669 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!