/usr/local/lib/libz.a: could not read symbols: Bad value一般是64 位 电脑才会出现。解决方法如下:1 cd zlib-1.2.3 //进入zlib目录2 3 CFLAGS="-O3 -fPIC" ./configure //使用64位元的方法...
分类:
其他好文 时间:
2014-08-01 22:56:12
阅读次数:
441
最近研究了一下MFC下对串口的操作,测试了一下对设备的读写。1.打开串口 1 GetDlgItem(IDC_BUTTON_OPEN)->EnableWindow(FALSE); 2 m_hComm = CreateFile("COM1", 3 GENERIC_READ...
分类:
其他好文 时间:
2014-08-01 19:17:42
阅读次数:
263
java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data fr...
Linux内核的VFS子系统:文件描述符对于内核而言,所有打开的文件都通过文件描述符引用。文件描述符是一个非负整数。当打开一个现有文件或创建一个新文件时,内核向进程返回一个文件描述符。当读或写一个文件时,使用open或creat返回的文件描述符标识该文件,将其作为参数传递给read或write。 按...
分类:
其他好文 时间:
2014-08-01 12:48:01
阅读次数:
430
it's been a long timewithout practicing~ almost everything about the C programming language.learn today: 1/ read the problem carefully. 2/no blank bet...
分类:
其他好文 时间:
2014-08-01 04:43:51
阅读次数:
251
到今天为止,差不多已经工作一年了,一直在做的是javaweb开发,一直用的是ssh(sh)别人写好的框架,总感觉自己现在高不成低不就的,所以就像看看java的源码,顺便学习一下大牛的思想和架构,read and write一直是提高自己编程水平的不二法门,写博客只是记录自己的学习历程,方便回顾,.....
分类:
编程语言 时间:
2014-07-31 23:39:30
阅读次数:
357
read())){//遍历文件夹 echo $entry; } $handler->close();//关闭句柄 判断是否有读的权限 is_readable($file); 判断文件是否存在 file_exists($file);...
分类:
Web程序 时间:
2014-07-31 19:59:47
阅读次数:
217
The purpose of this problem is to verify whether the method you are using to read input data is sufficiently fast to handle problems branded with the ...
分类:
其他好文 时间:
2014-07-31 19:39:57
阅读次数:
190
正则表达式与python的网页操作练习一:importurllib.request
importre
qname=input(‘inputenglish:‘)
qname=qname.strip()
url=‘http://dict.youdao.com/search?le=eng&q=‘+qname+‘&keyfrom=dict.top‘
html=urllib.request.urlopen(url)
source=html.read().decode(‘U..
分类:
编程语言 时间:
2014-07-31 17:21:47
阅读次数:
242
JDK提供了写锁接口ReadWriteLock和它的实现ReentrantReadWriteLock。要实现一个读写锁,需要考虑很多细节,其中之一就是锁升级和锁降级的问题。什么是升级和降级呢?ReadWriteLock的javadoc有一段话:
Can the write lock be downgraded to a read lock without allowing an interven...
分类:
其他好文 时间:
2014-07-31 17:13:36
阅读次数:
231