Red Hat Enterprise Linux 5 64-bit 系统下安装中文语言支持方法 测试环境:Windows2012+Vmvare9.0+Red Hat Enterprise Linux 5 64-bit 虚拟机安装光盘: rhel-5-server-x86_64-dvd.iso安装中文显示步骤:1、启动Red Hat Enterprise Linux 5 64-bit 虚拟机,打开光...
分类:
系统相关 时间:
2014-07-22 23:00:33
阅读次数:
618
今天项目从SqlServer转移到了MySql,转移过程中发现了一些问题,以前没遇到过,在网上查了查,总算是解决了,但是问题的根源还弄明白,暂且记录下来:首先有个tb_paymentmethod表,表中有几条数据如下:DAO层获取Model时这样:
if (row["IsDefault"] != n...
分类:
数据库 时间:
2014-05-12 15:58:21
阅读次数:
974
您正试图在64位版本的窗口中运行32位安装程序、系统有32位操作系统和64位操作系统的分别,相同的软件的安装也需要区分操作操作系统的位数。解决办法:查看自己系统类型,根据类型下载安装相应位数的软件。
一般的Flash,只允许写时将1变成0,而不允许0变成1;仅当擦除时将0变成1.所以写全0xff是没什么意义的以前对flash只能进行一次写很困惑,这句话解释了原因。norflash就是
对bit位进行nor的flash,nand flash就是对bit位进行!and 的flash
分类:
其他好文 时间:
2014-05-09 12:40:33
阅读次数:
263
The gray code is a binary numeral system where two successive values differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print the sequence of gr...
分类:
其他好文 时间:
2014-05-07 06:10:17
阅读次数:
370
一次通过,它的spoiler里面的提示有两个:1. 末尾为0的情况,这个考虑到了2.Did you
notice that the reversed integer might overflow? Assume the input is a 32-bit
integer, then the reve...
分类:
其他好文 时间:
2014-05-06 11:10:45
阅读次数:
356
Author:DriverMonkey
Mail:bookworepeng@Hotmail.com
Phone:13410905075
QQ:196568501
测试环境:Win7 64 bit
编译器:gcc 4.81
测试代码-
/*************************************************...
分类:
编程语言 时间:
2014-05-05 21:22:48
阅读次数:
358
Problem Description
Given an positive integer A (1
For example, given A = 26, we can write A in binary form as 11010, so the lowest bit of A is 10, so the output should be 2.
Another example...
分类:
其他好文 时间:
2014-05-05 13:22:39
阅读次数:
394
1 typedef signed char qint8; /* 8 bit signed */ 2
typedef unsigned char quint8; /* 8 bit unsigned */ 3 typedef short qint16; /* 16
bit signed */ 4 ty....
分类:
其他好文 时间:
2014-05-05 11:39:45
阅读次数:
503
方法一:32位的系统中int类型和long类型一般都是4字节;64位的系统中int类型还是4字节的,但是long已变成了8字节;linux系统中可用"getconfWORD_BIT"和"getconfLONG_BIT"获得word和long的位数;64位系统中应该分别得到32和64;[root@bogon~]#getconfLONG_BIT64方法二:[root@ro..
分类:
系统相关 时间:
2014-05-02 03:04:35
阅读次数:
300