IO 线程-时间退出和字符串逆置循环

文章展示了两个C语言的多线程程序。第一个程序创建了一个分支线程,持续显示系统时间,而主线程等待用户输入特定指令退出。第二个程序包含两个分支线程,A线程打印一个字符串,B线程则反转该字符串,通过共享变量实现线程间的同步。
摘要由CSDN通过智能技术生成

#include <stdio.h>
#include <stdlib.h>
#include <string.h>	
#include <time.h>
#include <pthread.h>
#include <unistd.h>


//线程执行体
void *create_pthread(void *arg)
{   
	//循环获取时间
	time_t time1;
	system("clear");    //让代码执行shell指令

	while(1)
	{
		time(&time1);
		struct tm *t = localtime(&time1);
		printf("%d-%02d-%02d %02d:%02d:%02d\n",\
				t->tm_year+1900,t->tm_mon+1,\
				t->tm_mday,t->tm_hour,\
				t->tm_min,t->tm_sec);
		fflush(stdout);
		sleep(3);
	}
	return NULL;
}
int main(int argc, const char *argv[])
{
	//创建分支线程
	pthread_t pth;
	if(pthread_create(&pth, NULL, create_pthread, NULL) !=0)
	{
		perror("pthread_create");
		return -1;
	}



	//主线程
	char flag[10];
	char a[10] = "quit";
	while(1)
	{
		scanf("%s",flag);
		if(strcmp(flag,a) == 0)
		{
			return 0;
		}
	}

	return 0;
}

#include <stdio.h>
#include <stdlib.h>
#include <string.h>	
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <pthread.h>


//全局变量
char buf[]="1234567";
int flag =0;

//A分支线程

void*callbacka(void *arg)
{
	while(1)
	{
		if(1==flag)
		{
			flag=0;
			printf("%s\n",buf);
		}
	}
}

//B分支线程
void* callbackb(void* arf)
{
	int temp=0;
	while(1)
	{
		if(0 == flag)
		{
			for(int i=0;i<strlen(buf)/2;i++)
			{
				temp=buf[i];
				buf[i]=buf[strlen(buf)-i-1];
				buf[strlen(buf)-i-1]=temp;
			}
			flag=1;
		}
	}
}


int main(int argc, const char *argv[])
{    //主线程
	pthread_t a;  //创建一个A的tid号
	pthread_t b;  //创建一个B的tid号

	//创建A的分支线程
	
	if(pthread_create(&a, NULL, callbacka,NULL)!=0)
	{
		fprintf(stderr,"pthread_create failed");
		return -1;
	}

	//创建B的分支线程
	
	if(pthread_create(&b, NULL, callbackb,NULL)!=0)
	{
		fprintf(stderr,"pthread_create failed");
		return -1;
	}

	//阻塞线程a b
	pthread_join(a,NULL);
	pthread_join(b,NULL);

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值