码迷,mamicode.com
首页 >  
搜索关键字:current    ( 7130个结果
C#学习心路历程
这里只记录C#的特色地方 1、params关键字,本关键字在于可变长参数的利用,比如 static void countNumbers(params int vals) { foreach(val in vals) { Console.write("current number is {0}" ,  val); } } 调用的时候可以传入任意数量的数字,比如countNumbers...
分类:其他好文   时间:2014-09-26 23:59:48    阅读次数:385
Cygwin环境使用第三方ARMGCC编译eCos系统
第三方ARMGCC通常是基于Mingw32的,使用的是Windows路径,如C:\ecos\packages\infra\current\src\startup.cxx;而eCos配置工具生成的Makefile是基于Cygwin的,使用的是POSIX路径,如/cygdrive/c/packages/infra/current/src/startup.cxx。路径格式上的差别导致不能直接使用第三方ARMGCC编译eCos系统,而是需要一个中间程序来对路径进行转换。这里提供了执行路径转换的中间程序的源代码和编译...
分类:Windows程序   时间:2014-09-25 18:46:17    阅读次数:306
The 15th tip of DB Query Analyzer
The latest version of DB Query Analyzer is 6.01. In 6.01, users are allowed to add, delete or update SQL Execute Schedule in the current MDI Child Form. Consequently, users can execute SQL Script in the time that they want. By doing this, you can not only...
分类:数据库   时间:2014-09-25 14:15:49    阅读次数:331
Arch linux安装
本文基于ArchLinux(https://www.archlinux.org/)Current Release: 2013.08.01的ISO写的安装教程!ISO下载地址:http://mirrors.163.com/archlinux/iso/2013.08.01/archlinux-2013....
分类:系统相关   时间:2014-09-24 22:21:27    阅读次数:481
让安装在vs2012上的va插件解析cuda6.5源文件
1、va设置 1)在注册表HKEY_CURRENT_USER\Software\Whole Tomato\Visual Assist X\VANet8下的ExtHeader和ExSource中分别添加.cuh和.cu 2)在vs界面选择Visual Assist X Options->Projects->C/C++ Directories,Platform下拉框选"Custom",Show D...
分类:其他好文   时间:2014-09-24 19:07:23    阅读次数:317
通过PHP current()函数获取未知字符键名数组第一个元素的值
通过PHP current()函数获取未知字符键名数组第一个元素的值在开发中经常遇到这样问题,获取数组第一个元素的值,如果是数字索引那还好,直接$array[0],如果键名是字符串,你又未知这个字符串呢?用current()函数就可以做到。当然,你可以用array_shift()函数,但是它会破坏原...
分类:Web程序   时间:2014-09-24 18:09:27    阅读次数:202
jquery操作checkbox火狐下第二次无法勾选问题
原来的代码:$('#checkAll').click(function(){ var current = $(this) $('.checkbox').each(function(){ debugger...
分类:Web程序   时间:2014-09-23 12:36:14    阅读次数:193
【转】javascript打印设置
页面中的代码:相关JS:var hkey_root, hkey_path, hkey_keyhkey_root = "HKEY_CURRENT_USER"hkey_path = "\\Software\\Microsoft\\Internet Explorer\\PageSetup\\"// 设置 ...
分类:编程语言   时间:2014-09-22 14:58:52    阅读次数:175
tryLock & lock 区别
void lock()Acquires the lock.If the lock is not available then the current thread becomes disabled for thread scheduling purposes and lies dormant unt...
分类:其他好文   时间:2014-09-22 01:23:41    阅读次数:417
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!