码迷,mamicode.com
首页 >  
搜索关键字:runtime    ( 5883个结果
ADHelper C#域用户操作(转)
using System;using System.Collections.Generic;using System.DirectoryServices;using System.Linq;using System.Runtime.InteropServices;using System.Secur...
分类:其他好文   时间:2014-08-13 14:36:56    阅读次数:199
Single Number
Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runtime complexi...
分类:其他好文   时间:2014-08-12 18:29:14    阅读次数:231
Single Number II
Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a linear runtime co...
分类:其他好文   时间:2014-08-12 18:26:14    阅读次数:280
说说asp.net中的异常处理和日志追踪
关于异常的处理想必大家都了解try{}catch(){}finally{},这里就不再讲了。通过在VS里的"调试"-"异常",在弹出的异常对话框里的Common Language Runtime Exceptions栏里是.NET中的异常层次结构。自定义异常:如果系统提供的异常类已经不能够满足应用系...
分类:Web程序   时间:2014-08-12 18:13:44    阅读次数:379
cocos2d-js 3.0 rc0 编译release报错 value for keystore is not valid. it must resolve to a single path
第一次编译是好好的,需要手工输入keystore文件地址和密码等等。第二次不需要输入,然后就直接出错了。 找了一下,发现第一步之后,cocos会记录ant信息到\frameworks\runtime-src\proj.android\ant.properties 打开这个文件发现: key.stor...
分类:Web程序   时间:2014-08-12 16:57:24    阅读次数:246
sql2008连接数据库问题
配置系统未能初始化 (System.Configuration)------------------------------无法识别的配置节 runtime。 (C:\Program Files (x86)\Microsoft SQLServer\100\Tools\Binn\VSShell\Com...
分类:数据库   时间:2014-08-12 16:54:14    阅读次数:270
控制本机进程
public class RunTimeDemo02 { public static void main(String[] args) { Runtime runtime = Runtime.getRuntime(); Process process = null; try { proces...
分类:其他好文   时间:2014-08-12 13:32:04    阅读次数:152
LRU Cache
这个题敲了好久,比较纠结就是用链表加map实现,第一次是用单链表加一个指针标记,提交了几次总是出现runtime error。应该是内存访问出现了问题,原因在指针上,所以我就采用了双链表,修改了几个边界问题终于过了。需要考虑的边界有,catche容量为0,1的情况时head和tail的处理。链表.....
分类:其他好文   时间:2014-08-12 13:13:34    阅读次数:220
关于Mdi窗口-父窗口上的控件把子窗口的挡住的问题
using System.Runtime.InteropServices;[DllImport("user32")]public static extern int SetParent(int hWndChild, int hWndNewParent);///temp2是你的子formtemp2.M...
分类:其他好文   时间:2014-08-12 12:49:04    阅读次数:185
StringBuffer&Runtime demo
public class StringBufferDemo02 { public static void main(String[] args) { StringBuffer bf = new StringBuffer("I am bf,"); // bf="I am a bf,"; fun1(bf...
分类:其他好文   时间:2014-08-12 12:47:54    阅读次数:183
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!