码迷,mamicode.com
首页 >  
搜索关键字:long position    ( 28572个结果
进度条
EditorGUI.ProgressBar 进度条static functionProgressBar(position:Rect,value: float,text: string) : voidParameters参数totalPositionRectangle on the screen to...
分类:其他好文   时间:2014-05-10 01:28:36    阅读次数:440
CSS之盒子倒三角
1 div{ 2 position: relative; 3 } 4 em ,span{ 5 border-style:solid dashed dashed dashed; 6 border-color:transparent; 7...
分类:Web程序   时间:2014-05-09 12:40:06    阅读次数:295
Java宝典(一)
-switch语句能作用在byte上,能否作用在long上,能否作用在String上?-在switch(expr1)中,expr1只能是一个整数表达式或者枚举常量,整数表达式可以是int基本类型或Integer包装类型,由于byte,short,char都可以隐式转换为int,所以这些类型以及这些类...
分类:编程语言   时间:2014-05-08 20:32:56    阅读次数:371
字符串转变成数字
C标准库了提供了 atoi, atof, atol, atoll(C++11标准) 函数将字符串转换成int,double, long, long long 型。 char str[] = "15.455"; double db; int i; db = atof(str); /...
分类:其他好文   时间:2014-05-08 19:45:22    阅读次数:246
linux内核学习:中断
编程相关注册中断int request_irq( unsigned int irq, irq_handler_t handler, unsigned long flags, const char *name, void *dev) typede...
分类:系统相关   时间:2014-05-07 17:58:00    阅读次数:415
三、Java基础知识要点合集
1、数据类型 Java的数据类型分为基本数据类型和引用数据类型。 a, 基本数据类型包括:byte, boolean, char, short, int, long, float, double; b, 每个基本数据类型都有相应的引用类型,比如int -> Integer,char -> ch...
分类:编程语言   时间:2014-05-07 17:54:03    阅读次数:417
VBA api创建进度条
Private Declare Function CreateWindowEx Lib "user32" Alias "CreateWindowExA" (ByVal dwE As Long, ByVal lpC As String, ByVal lpW As String, ByVal dwS A...
分类:Windows程序   时间:2014-05-05 10:39:36    阅读次数:456
codechef Cleaning Up 题解
After a long and successful day of preparing food for the banquet, it is time to clean up. There is a list of n jobs to do before the kitchen can be closed for the night. These jobs are indexed from 1...
分类:其他好文   时间:2014-05-04 18:25:07    阅读次数:384
《linux 内核完全剖析》上帝为什么是右移20,而不是22! dir = (unsigned long *) ((from>>20) & 0xffc)
在memory.c里面有这么一段代码。为了其中的一句话,让我内牛满面啊!  dir = (unsigned long *) ((from>>20) & 0xffc) int free_page_tables(unsigned long from,unsigned long size) { unsigned long *pg_table; unsigned long...
分类:系统相关   时间:2014-05-04 18:22:41    阅读次数:459
《linux 内核完全剖析》 void free_page() 分析
#define PAGE_SIZE 4096 /* these are not to be changed without changing head.s etc */ #define LOW_MEM 0x100000 extern unsigned long HIGH_MEMORY; #define PAGING_MEMORY (15*1024*1024) #define PAGING_PAG...
分类:系统相关   时间:2014-05-04 18:15:51    阅读次数:441
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!