using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public part... ...
分类:
其他好文 时间:
2019-01-31 01:33:47
阅读次数:
155
转自:http://www.wowotech.net/pm_subsystem/wakeup_events_framework.html 1. 前言 本文继续“Linux电源管理(6)_Generic PM之Suspend功能”中有关suspend同步以及PM wakeup的话题。这个话题,是近几年 ...
分类:
系统相关 时间:
2019-01-30 19:55:01
阅读次数:
194
上面的链接是linux内核版本, 蓝牙不管用可能是linux内核版本过低,本人亲自实验过, 升级到4.20.5-042005-generic 可以打开了蓝牙, 就是打开速度很慢,需要等待3到5秒 升级内核步骤, 以4.20.5-042005-generic为例 1.下载3个内核文件 2.开始安装执行 ...
分类:
系统相关 时间:
2019-01-30 16:03:54
阅读次数:
607
Entity层 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel.DataAnnotations; 4 using System.Runtime.Serialization; 5 usi ...
分类:
数据库 时间:
2019-01-30 14:10:59
阅读次数:
172
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
其他好文 时间:
2019-01-28 14:03:29
阅读次数:
134
1.通配符 泛型通配符有两种 上界通配符<? extends xx> 下界通配符<? super xx> 2.举例说明 先上代码吧 结构很简单的类,B和C都继承基类A. <? extends A>的意思表示某一个类,这个类是继承自A,确定了上界,但是问题就来了,继承A的类有B和C,编译器无法确定具体 ...
分类:
其他好文 时间:
2019-01-28 01:29:52
阅读次数:
186
1,新建项目,导入资源,平台匹配; 2,背景循环(一般是2/3个背景精灵切换); A. 精灵Sprite :Pixels Per Unit 是精灵的尺寸在unity之后的换算问题 栗子:图片高度为852像素,导入后显示的为8个单位 B. 建立一个空节点做父节点,在每个背景上添加脚本,Backgrou ...
分类:
微信 时间:
2019-01-27 19:15:13
阅读次数:
351
造冰箱的大熊猫@cnblogs 2019/1/27 将Windows下串口编程相关信息进行下简单小结,以备后用。 1、打开串口 打开串口使用CreateFile()函数。以打开COM6为例: 其中: - "COM6",为待打开串口的串口名。 - GENERIC_READ | GENERIC_WRIT ...
msdn叙述:The SortedDictionary<TKey, TValue> generic class is a binary search tree with O(log n) retrieval, where n is the number of elements in the dict ...
答案:是线程安全的,只读不写多线程下,完全不需要加锁! 测试代码: 模拟5万个线程读字典,看看是否混乱: 完全不需要担心,放心 ...
分类:
编程语言 时间:
2019-01-25 23:20:43
阅读次数:
285