1.
引用类型是类型安全的指针,它们的内存是分配在堆(保存指针地址)上的。String、数组、类、接口和委托都是引用类型。2.
强制类型转换与as类型转换的区别:当类型转换非法时,强制类型转换将抛出一个System.InvalidCastException异常,而as不会抛出异常,它返回一个null...
分类:
其他好文 时间:
2014-05-23 07:27:25
阅读次数:
408
using System;using System.Collections.Generic;using
System.Linq;using System.Text;namespace SU{ /// /// 中文转拼音 /// public class
PinYin ...
分类:
其他好文 时间:
2014-05-23 06:46:51
阅读次数:
395
1 using System; 2 using System.Threading.Tasks; 3
using System.Runtime.InteropServices.WindowsRuntime; 4 using
Windows.Graphics.Imaging; 5 using...
分类:
移动开发 时间:
2014-05-23 06:35:37
阅读次数:
295
using System;using
System.Runtime.InteropServices;namespace FastReboot{ static class Program {
private delegate uint ZwShutdownSystem(int...
分类:
其他好文 时间:
2014-05-21 17:18:09
阅读次数:
391
second order system anlysis
在matlab里面搭建好相应的仿真模型图
当T0 = 10 ,K1 = 1,T1 = 1的时候
根据二阶系统的开,闭环传递函数的特点,这里我们可以通过调节系数的值,间接的调节Wn 和 epsilon(阻尼)的值
在上图中epsilon...
分类:
其他好文 时间:
2014-05-21 16:35:01
阅读次数:
271
Third order system anlysis
当 T0 = 1 ,T1 = 1 ,T2 = 1, K1 = 1 K2 = 1,时的matlab仿真分析
此时超调很大,稳定时间长
假设T0 = 1 , K1 = 1 K2 = 12,T1 = 0.1 T2 = 0.5 这样一来
我故意设置...
分类:
其他好文 时间:
2014-05-21 15:26:54
阅读次数:
294
应用场合:已知字段名字,查询数据库中所有数据表中包含该字段名的所有数据表操作办法:指定字段名,数据库表用户,执行下面查询语句即可--Oracle生成查询包含指定字段名对应的所有数据表记录语句declare mycolumnname VARCHAR(255):='userid';--定义要查询的字段名变量,运行前修改成您要查询的字段名myownername VARCHAR(255):='system...
分类:
数据库 时间:
2014-05-21 14:29:17
阅读次数:
374
原因:MinGW没有安装c编译器。
MinGW的安装管理器的"Basic Setup"栏目找不到c编译器:
在“All Packages”->"MSYS"->"MSYS System Builder"栏目中勾选"msys-gcc":...
分类:
Windows程序 时间:
2014-05-21 13:48:54
阅读次数:
1228
Git 属于分布式版本控制系统( Distributed Version Control
System,简称 DVCS
)客户端并不只提取最新版本的文件快照,而是把原始的代码仓库完整地镜像下来。这么一来,任何一处协同工作用的服务器发生故障,事后都可以用任何一个镜像出来的本地仓库恢复。因为每一次的提取...
分类:
系统相关 时间:
2014-05-21 12:07:50
阅读次数:
441
using UnityEngine;using System.Collections;public
class wht : MonoBehaviour { static wht myInstance; public int x = 0; static int
instances =...
分类:
其他好文 时间:
2014-05-21 11:51:43
阅读次数:
207