线程中默认共享数据段,代码段等地址空间,常用的是全局变量。而进程不共享全局变量。

下面写一个程序,证明线程之间是共享全局变量的。

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

int var=100;

void *tfn(void *arg)
{
    var=200;
    printf("pthread\n");
    return NULL;
}

int main()
{
    printf("没有创建线程之前的var的值:%d\n",var);
    pthread_t tid;
    pthread_create(&tid,NULL,tfn,NULL);
    sleep(1);
    printf("创建线程之后的var的值:%d\n",var);
    return 0;
}

分析:

定义了一个全局变量var=100,在线程函数中var+100。如果全局变量不是共享的话,在主线程中打印那个值,应该是100,但结果是200。证明了线程中的全局变量是共享的,


代码结果:

没有创建线程之前的var的值:100
pthread
创建线程之后的var的值:200

Logo

更多推荐