码迷,mamicode.com
首页 >  
搜索关键字:int b)将整数n转换为以b进制的数保存到s中    ( 143001个结果
Conceptual blockbusting - chap3 Emotional blocks
Barnyard game -- People will often avoid conceptualization, or at least avoid publicizing the output because expression of new ideas sometimes makes y...
分类:其他好文   时间:2014-04-29 17:12:24    阅读次数:501
c 函数及指针学习 5
聚合数据类型能够同时存储超过一个的单独数据。 c语言提供了数组和结构体。1.1234567891011121314#include #include void main(){struct {int a;}x,*b;int c[2]={1,2};x.a=1;b=c;printf("%d \n",b[1...
分类:其他好文   时间:2014-04-29 17:05:12    阅读次数:395
java程序结构
if....else....1. if都需要接判断表达式2. else不需要表达式3. 有if没else可以,但else必须要有一个if,if数>=else数if (A条件) //判断A条件是否成立,是否为真,真的就执行语句1,否则,执行语句2 执行语句1else执行语句2if(B条件) ...
分类:编程语言   时间:2014-04-29 16:55:56    阅读次数:456
c 函数及指针学习 6
不完整声明1234567891011121314151617181920212223242526/* 方法一 */struct tag_a{struct tag_b *bp; /* 这里struct tag_b 还没有定义,但编译器可以接受 */int value;};struct tag_b{st...
分类:其他好文   时间:2014-04-29 16:54:53    阅读次数:366
Oracle——包
包用于在逻辑上组合过程和函数,它由包规范和包体两个部分组成。(1)首先用CREATE PACKAGE创建包规范,只包含过程和函数的说明,但没有过程和函数的实现代码--创建一个包名称为sp_package--声明该包含有一个过程update_sal--声明该包含有一个函数annual_incomeCR...
分类:数据库   时间:2014-04-29 16:53:52    阅读次数:632
IOIS随机数
引入有时候我们需要在程序中生成随机数,但是在Objective-c中并没有提供相应的函数,好在C中提供了rand()、srand()、random()、arc4random()几个函数。那么怎么使用呢?下面将简单介绍:使用1、获取一个随机整数范围在:[0,100)包括0,不包括100intx =ar...
分类:其他好文   时间:2014-04-29 16:51:50    阅读次数:625
opengl
基于OpenGL ES的GLfixed类型使用OpenGL ES中引入了GLfixed类型。这个类型一般被定义为int,32位。高16位表示整数部分,低16位表示小数部分。由于其整数部分和小数部分所占用的比特数固定,所以也被称为定点类型——fixed type。 这个类型的小数部分一般占用低16位,...
分类:其他好文   时间:2014-04-29 16:44:42    阅读次数:563
Codeforces Round #243 (Div. 2) A. Sereja and Mugs
#include #include #include #include using namespace std;int main(){ int n,s; cin >> n >> s; vector a(n); for(int i = 0 ; i > a[i]; sort...
分类:其他好文   时间:2014-04-29 16:42:39    阅读次数:415
Java Concurrent happens-before
happens-beforerelation on memory operations such as reads and writes of shared variables. The results of a write by one thread are guaranteed to be .....
分类:移动开发   时间:2014-04-29 16:38:32    阅读次数:511
spring 拦截器拦截点的配置
实用正则org.springframework.aop.support.RegexpMethodPointcutAdvisor然后 .*_cache.* 表示拦截...
分类:编程语言   时间:2014-04-29 16:25:10    阅读次数:510
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!