系统级程序设计(1)

系统级程序设计(1),第1张

文章目录
  • 前言
  • 一、学习内容
  • 二、代码输入测试过程
    • 1.代码
  • 总结


前言

作业要求:根据老师提供的代码,自己进行学习,通过输入代码进行测试,初步了解系统级程序设计的基本要求,对Linux系统下运行c语言程序有一个初步了解

一、学习内容

(https://blog.csdn.net/search_129_hr/category_11784317.html)

open函数

#include
int open(const char *pathname, int flags[, mode_t mode);

read函数`

#include
ssize_t read(int fd, void *buf, size_t count);

write函数
#include
ssize_t write(int fd, void *buf, size_t count);`

lseek函数
#include
ssize_t write(int fd, off_t offset, int whence);

close函数
#include
int close(int fd);
`

二、代码输入测试过程 1.代码

代码如下(示例):

#include 
#include 
#include 
#include 
#include 
int main(){
	int tempFd = 0;
	char tempFileName[20] = "test.txt";

	tempFd = open(tempFileName, O_RDWR|O_EXCL|O_TRUNC, S_IRWXG);
	if(tempFd == -1){
		perror("file open error.\n");
		exit(-1);
	}//of if

	int tempLen = 0;
	char tempBuf[100] = {0};
	scanf("%s", tempBuf);
	tempLen = strlen(tempBuf);
	write(tempFd, tempBuf, tempLen);
	close(tempFd);

	tempFd = open(tempFileName, O_RDONLY);
	if(tempFd == -1){
		perror("file open error.\n");
		exit(-1);
	}//of if
	off_t tempFileSize = 0;
	tempFileSize = lseek(tempFd, 0, SEEK_END);
	lseek(tempFd, 0, SEEK_SET);
	while(lseek(tempFd, 0, SEEK_CUR)!= tempFileSize){
		read(tempFd, tempBuf, 1024);
		printf("%s\n", tempBuf);
	}//of while
	close(tempFd);
	return 0;
	}//of main

总结

对此次学习进行总结:经过这次的学习,不仅初步了解系统级程序设计的基本要求,对Linux系统下运行c语言程序有一个简单了解,更是首次自己完成自己学习的一个记录过程,规范化变量名命名,临时变量注释能增加代码的可读性。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/langs/797822.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存