码迷,mamicode.com
首页 >  
搜索关键字:system    ( 49231个结果
递归求斐波那契数列
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class...
分类:其他好文   时间:2015-03-20 18:00:15    阅读次数:125
c#操作xml
总结一下c#操作xml,之前用的比较多,都是直接数据库的操作xml,今天查看了一些资料,发现c#操作xml也是很方便,有一些方面给sql直接操作xml 更加方便,如增加一些动态的节点,属性。先贴一些方法: 1 //所需要添加的命名空间 2 using System.Xml; 3 /...
分类:Windows程序   时间:2015-03-20 17:57:56    阅读次数:154
设计模式之桥梁模式
场景描述:1、 在系统设计时,发现类的继承有N层时,但不能确定是否会更改继承来的共性,可以考虑使用桥梁模式。2、类图描述:桥梁模式是抽象和实现的解耦,使得两者可以独立地变化。3、程序实现举例(C#):using System;using System.Collections.Generic;usin...
分类:其他好文   时间:2015-03-20 17:56:31    阅读次数:166
批处理系统是什么
批处理系统(batch processing system)中,一个作业可以长时间地占用cpu。而分时系统中,一个作业只能在一个时间片(Time Slice,一般取100ms)的时间内使用cpu。批处不是严格意义上的操作系统,虽然可用Monitor监督,可用汇编语言开发,但也只是操作系统的原型。所谓...
分类:其他好文   时间:2015-03-20 17:54:35    阅读次数:113
Sitecore Digital Marketing System, Part 1: Creating personalized, custom content for site visitors(自定义SiteCore中的 Item的Personalize的Condition) -摘自网络
Sitecore’s Digital Marketing System (DMS) can help you personalize the content your site displays to your users/visitors and can be easily customized ...
分类:其他好文   时间:2015-03-20 17:53:35    阅读次数:116
Groovy操纵集合秘籍
## Groovy操纵集合秘籍 ### [X] 遍历集合 遍历list对象 ***java风格:*** ```groovy def list = [1, 2, 3, 4] for (int i = 0; i < list.size(); i++) { System.out.println(list.get(i)); } ``` ***groovy风格:**...
分类:其他好文   时间:2015-03-20 16:37:38    阅读次数:141
【spring教程之三】在构造器中注入新类
1、在构造器中注入新类和在构造器中注入基本参数类似,主要是修改xml里面的配置。 2、核心spring.xml文件 3、Reading.java package com.test.pro; public class Reading { public void doing() { System.out.println("我在读书...
分类:编程语言   时间:2015-03-20 16:27:10    阅读次数:168
C# 判断服务器上文件是否存在
var path = " FramePath" ; var filePath = Server.MapPath(path); if (System.IO.File.Exists(filePath)) ...
分类:Windows程序   时间:2015-03-20 16:15:33    阅读次数:262
java中获取系统属性以及环境变量
java中获取系统属性以及环境变量System.getEnv()和System.getProperties()的差别从概念上讲,系统属性 和环境变量 都是名称与值之间的映射。两种机制都能用来将用户定义的信息传递给 Java 进程。环境变量产生很多其它的全局效应,由于它们不仅对Java 子进程可见,并...
分类:编程语言   时间:2015-03-20 16:09:00    阅读次数:163
WIN7 64位升级更新到IE10或IE11后,IE不能打开
权限问题,已经解决解决办法: 用regedit打开注册表,找到 HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main 对左侧树Main节点右键——权限。 正常情况下应该会有SYSTEM、 RESTRICTED、Administrato...
分类:Windows程序   时间:2015-03-20 15:46:56    阅读次数:148
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!