码迷,mamicode.com
首页 >  
搜索关键字:64 bit    ( 10514个结果
打消Xcode 5中JosnKit类库的bit masking for introspection of objective-c 警告
Xcode 5中苹果对多个体系框架及相干类库进行了改进。之前建树的项目在Xcode 5中从头编译会产生一些新题目。JosnKit是常用的轻量级Josn解析类,在Xcode 5中: BOOLworkAroundMacOSXABIBreakingBug = (JK_EXPECT_F(((NSUInteg...
分类:其他好文   时间:2014-06-07 08:54:47    阅读次数:474
使用Artful MySQL模块出错
总是报错:root@gitlab:/opt# newlispnewLISP v.10.6.0 64-bit on Linux IPv4/6 UTF-8 libffi, options: newlisp -h> (load "/opt/mysql.lsp")ERR: string expected i...
分类:数据库   时间:2014-06-06 20:55:10    阅读次数:298
boot/head.S
/* * linux/boot/head.S * * Copyright (C) 1991, 1992 Linus Torvalds *//* * head.S contains the 32-bit startup code. */.text.globl _idt,_gdt,.globl ...
分类:其他好文   时间:2014-06-06 15:11:14    阅读次数:417
php base64_encode()函数
base64_encode将字符串以 BASE64 编码。语法: string base64_encode(string data);返回值: 字符串函数种类: 编码处理解释:设计此种编码是为了使二进制数据可以通过非纯 8-bit 的传输层传输,例如电子邮件的主体。本函数将字符串以 MIME BAS...
分类:Web程序   时间:2014-06-05 18:12:20    阅读次数:252
topcoder srm: NumbersChallenge
用bit mask来做枚举还挺方便的这个大概是给你一个vector array,求出这个array里任意几个元素加和所不能得到最小的整数。元素个数最大20个,每个元素不超过100000比如[1,2,4],那么就应该返回8. (因为3=1+1, 5=1+4等等)所以枚举这个array的所有子集求和,之...
分类:其他好文   时间:2014-06-05 17:25:52    阅读次数:246
国内常用Linux镜像站点
网易镜像站点 http://mirrors.163.com/搜狐镜像站点 http://mirrors.sohu.com/阿里云镜像站点 http://mirrors.aliyun.com/北京理工大学镜像站点 IPV4 http://mirror.bit.edu.cn/web/IPV6 http....
分类:系统相关   时间:2014-06-02 19:54:49    阅读次数:410
不用加减乘除做加法
问题描述 写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。 算法描述 从二进制运算入手, 1.a^b求出各bit的和, 2.a&b求出需要进位的bits, 3 4.重复1、2、3直至a&b==0(即进位为0),得到结果。 代码 int add(int num1,int num2) { if(num2==0) retu...
分类:其他好文   时间:2014-06-02 12:38:46    阅读次数:225
查看电脑已安装的Jdk的位数
查看自己电脑已安装的Jdk的位数的方法: public class ShowJdkBit {  public static void main(String[] args) {   String arch = System.getProperty("sun.arch.data.model");   System.out.println(arch + "-bit");  }...
分类:其他好文   时间:2014-06-02 12:30:19    阅读次数:155
OpenGL【2 坐标变换】
// OpenGL.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include using namespace std; void init(void) { glClearColor(1.0,1.0,1.0,1.0); glClear(GL_COLOR_BUFFER_BIT); glShadeMod...
分类:其他好文   时间:2014-06-02 11:02:18    阅读次数:282
SQL Server 数据类型
第一大类:整数数据bit:bit数据类型代表0,1或NULL,就是表示true,false.占用1byte.int:以4个字节来存储正负数.可存储范围为:-2^31至2^31-1.smallint:以2个字节来存储正负数.存储范围为:-2^15至2^15-1tinyint: 是最小的整数类型,仅用1...
分类:数据库   时间:2014-06-02 08:17:57    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!