文件IO操作相关系统编程这里主要说两套IO操作接口,分别是:POSIX标准read|write接口,函数定义在#include<unistd.h>ISOC标准fread|fwrite接口,函数定义在#include<stdio.h>有书上说POSIX标准与ISOC标准的区别在于文件读写是否带缓冲区,我则不是很认同,因此POSI..
分类:
系统相关 时间:
2014-05-27 03:59:28
阅读次数:
481
编写一个shell脚本,实现加法和乘法运算。#!/bin/bash#Function:num1+num2num3*num4sum(){read-p"pleasekeyinfirstnumber:"num1read-p"pleasekeyinsecondnumber:"num2letnum3=${num1}+${num2}echo-e"\033[32m$num1+$num2=$num3\033[0m"}#############cf(){read-p"pleasekeyinfi..
分类:
其他好文 时间:
2014-05-27 03:28:19
阅读次数:
219
//少说话,多做事,以下是我验证过没有问题的串口发送接受数据
//使用MCU stm8s105c6 UART2
void UART2_DeInit(void)
{
u8 dummy = 0;
/*< Clear the Idle Line Detected bit in the status rerister by a read
to the UART2_SR re...
分类:
其他好文 时间:
2014-05-22 12:57:28
阅读次数:
1036
笔记本换成XP系统后,单击我的电脑或者别的时候,有时会提示,下面的错误提示:
---------------------------
IExplore.exe - 应用程序错误
---------------------------
"0x00a1bdb3" 指令引用的 "0x00000001" 内存。该内存不能为 "read"。
要终止程序,请单击“确定”。
要调试程序,请单击“取消”。
...
分类:
数据库 时间:
2014-05-22 12:51:43
阅读次数:
472
p Me Escape
Time Limit: 2 Seconds Memory Limit: 32768 KB
Background
If thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto th...
分类:
其他好文 时间:
2014-05-22 12:50:31
阅读次数:
280
我们通常这么写
using (SqlDataReader drm = sqlComm.ExecuteReader())
{
drm.Read();//以下把数据库中读出的Image流在图片框中显示出来.
MemoryStream ms = new Mem...
分类:
数据库 时间:
2014-05-22 12:06:10
阅读次数:
566
int socketpair(int domain, int type, int protocol, int sockfd[2]); //创建未命名的全双工管道
domain只能为AF_UNIX,也就是限制在本地使用
type可以是SOCK_STREAM或SOCK_DGRAM,SOCK_STREAM相当于创建了双向流管道,管道的每一端都可以write或read,并且两端的数据流...
分类:
其他好文 时间:
2014-05-22 08:47:02
阅读次数:
241
上联:no zuo no die why you try
下联:no try no high give me five
横批: let it go。
坑爹bug:
错误写法:
0 } ">true (最后一个大括号后多出一个空格,代码啥都不会输出)
正确写法: 0 }">true 正确写法 输出结果: true...
分类:
Web程序 时间:
2014-05-22 07:42:52
阅读次数:
355
http://zhibinyang.me为了博客能够有更强的扩展性和更多地功能,现转移到专用的域名和空间,欢迎访问:
分类:
其他好文 时间:
2014-05-20 23:56:23
阅读次数:
350
文章转自:http://uliweb.clkg.org/tutorial/read/406cocos2d游戏开发实战6.1创建cocos2d项目6.2cocos2dv3"helloworld"6.2.1显示一个飞船6.3精灵6.4开始spaceviking之旅6.4.1增加sneakyinput6.5精灵的移动效果,旋转效果6.6定时器效果6.7启动cocos2d,默认竖屏6.8检查精灵碰撞参..
分类:
其他好文 时间:
2014-05-20 23:25:05
阅读次数:
363