码迷,mamicode.com
首页 >  
搜索关键字:read    ( 19693个结果
Linux学习记录--文件IO操作相关系统编程
文件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脚本实现加法乘法运算
编写一个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
STM8S 串口应用 UART2 STM8S105
//少说话,多做事,以下是我验证过没有问题的串口发送接受数据 //使用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
sql读写图片时Image.FromStream方法提示参数错误问题解决
我们通常这么写 using (SqlDataReader drm = sqlComm.ExecuteReader()) { drm.Read();//以下把数据库中读出的Image流在图片框中显示出来. MemoryStream ms = new Mem...
分类:数据库   时间:2014-05-22 12:06:10    阅读次数:566
socketpair
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
Read All About It-Attraction舞团
节目:2013年英国达人秀表演者:来自匈牙利的Attraction舞团背景音乐:Read All About It
分类:其他好文   时间:2014-05-21 23:05:46    阅读次数:203
Ffmpeg解析media容器过程/ ffmpeg 源代码简单分析 : av_read_frame()
ffmpeg 源代码简单分析 : av_read_frame() http://blog.csdn.net/leixiaohua1020/article/details/12678577ffmpeg中的av_read_frame()的作用是读取码流中的音频若干帧或者视频一帧。例如,解码视频的时候,....
分类:其他好文   时间:2014-05-21 22:21:52    阅读次数:541
LeetCode: Count and Say [037]
【题目】 The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ... 1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 is read off as "one 2, then one 1" or 1211. Given an integer n, generate...
分类:其他好文   时间:2014-05-21 15:20:07    阅读次数:213
poj 1159 Palindrome
Palindrome Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 50914   Accepted: 17537 Description A palindrome is a symmetrical string, that is, a string read...
分类:其他好文   时间:2014-05-21 06:50:05    阅读次数:281
cocos2d 游戏开发实战
文章转自: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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!