码迷,mamicode.com
首页 >  
搜索关键字:generic    ( 7184个结果
(实践证明,不论是否采用判断,都会弹出对话框。估计是页面发回服务器后,再发来,脚本就丢失了)可能在异步的时候有用
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
Linux电源管理(7)_Wakeup events framework【转】
转自: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
ubuntu18.04 蓝牙打开无效,解决办法升级内核
上面的链接是linux内核版本, 蓝牙不管用可能是linux内核版本过低,本人亲自实验过, 升级到4.20.5-042005-generic 可以打开了蓝牙, 就是打开速度很慢,需要等待3到5秒 升级内核步骤, 以4.20.5-042005-generic为例 1.下载3个内核文件 2.开始安装执行 ...
分类:系统相关   时间:2019-01-30 16:03:54    阅读次数:607
ef.core Mysql
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
unity仿微信飞机大战项目
1,新建项目,导入资源,平台匹配; 2,背景循环(一般是2/3个背景精灵切换); A. 精灵Sprite :Pixels Per Unit 是精灵的尺寸在unity之后的换算问题 栗子:图片高度为852像素,导入后显示的为8个单位 B. 建立一个空节点做父节点,在每个背景上添加脚本,Backgrou ...
分类:微信   时间:2019-01-27 19:15:13    阅读次数:351
Windows下串口编程
造冰箱的大熊猫@cnblogs 2019/1/27 将Windows下串口编程相关信息进行下简单小结,以备后用。 1、打开串口 打开串口使用CreateFile()函数。以打开COM6为例: 其中: - "COM6",为待打开串口的串口名。 - GENERIC_READ | GENERIC_WRIT ...
分类:Windows程序   时间:2019-01-27 10:44:23    阅读次数:359
C# SortedDictionary以及SortedList的浅谈
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 ...
分类:Windows程序   时间:2019-01-26 15:56:59    阅读次数:284
C#字典Dictionay多线程读是否是安全的
答案:是线程安全的,只读不写多线程下,完全不需要加锁! 测试代码: 模拟5万个线程读字典,看看是否混乱: 完全不需要担心,放心 ...
分类:编程语言   时间:2019-01-25 23:20:43    阅读次数:285
7184条   上一页 1 ... 77 78 79 80 81 ... 719 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!