3.进程间通信

  进程间通信

    进程间通信发展

    通信方式

  管道

    匿名管道

    命名管道

  system V共享

  system V消息队列

  system V信号量



进程间通信

目的
  • 数据传输:一个进程需要将它的数据发送给另一个进程

  • 资源共享:多个进程之间共享同样的资源。

  • 通知事件:一个进程需要向另一个或一组进程发送消息,通知它(它们)发生了某种事件(如进程终止时要通知父进程)。

  • 进程控制:有些进程希望完全控制另一个进程的执行(如Debug进程),此时控制进程希望能够拦截另一个进程的所有陷入和异常,并能够及时知道它的状态改变。



进程间通信发展

管道->System V进程间通信->POSIX进程间通信



通信方式

1.管道

  • 匿名管道pipe
  • 命名管道

2.System V IPC

  • System V 消息队列
  • System V 共享内存
  • System V 信号量

3.POSIX IPC

  • 消息队列
  • 共享内存
  • 信号量
  • 互斥量
  • 条件变量
  • 读写锁



管道

管道是Unix中最古老的进程间通信的形式,我们把从一个进程连接到另一个进程的一个数据流称为一个"管道"



匿名管道

#include <unistd.h>

原型
int pipe(int fd[2]);
功能

创建一无名管道

参数

fd:文件描述符数组,其中fd[0]表示读端, fd[1]表示写端

返回值

成功返回0,失败返回错误代码

实例代码
观察pipe之后文件描述符的值
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(void)
{
	int fds[2];
	char buf[100];
	int len;
	int i=0;
	if (pipe(fds) == -1)
		perror("make pipe"), exit(1);
	for(i=0; i<2; ++i)
		printf("fds[%d]->%d\n", i, fds[i]);
	return 0;
}

在这里插入图片描述

fds[0]用于读,fds[1]用于写

例子:从键盘读取数据,写入管道,读取管道,写到屏幕
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main( void )
{
    int fds[2];
    char buf[100];
    int len;
    if ( pipe(fds) == -1 )
        perror("make pipe"),exit(1);  
    while ( fgets(buf, 100, stdin) ) { // read from stdin
        len = strlen(buf);  // write into pipe
        if ( write(fds[1], buf, len) != len ) {
            perror("write to pipe");
            break;
        }
        memset(buf, 0x00, sizeof(buf));  
        if ( (len=read(fds[0], buf, 100)) == -1 ) { // read from pipe
            perror("read from pipe");
            break;
        }
        if ( write(1, buf, len) != len ) { // write to stdout
            perror("write to stdout");
            break;
        }
    }
}

fgets函数功能为从指定的流中读取数据,每次读取一行

如果将代码中得fds[1]和fds[0]交换。也就是fds[1]用于写变成读,fds[0]用于读变成写

write to pipe: Bad file descriptor

在这里插入图片描述

用fork来共享管道原理

在这里插入图片描述

站在文件描述符角度——深度理解管道

在这里插入图片描述

站在内核角度——管道本质

在这里插入图片描述

看待管道,就如同看待文件一样!管道的使用和文件一致,迎合了“Linux一切皆文件思想”

子进程只向管道写,父进程只从管道读
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#define ERR_EXIT(m) \
do \
{ \
perror(m); \
exit(EXIT_FAILURE); \
} while(0)
int main(int argc, char* argv[])
{
	int pipefd[2];
	if (pipe(pipefd) == -1)
		ERR_EXIT("pipe error");
	pid_t pid;
	pid = fork();
	if (pid == -1)
		ERR_EXIT("fork error");
	if (pid == 0) {
		close(pipefd[0]);
		write(pipefd[1], "hello", 5);
		close(pipefd[1]);
		printf("child write successed\n");
		exit(EXIT_SUCCESS);
	}
	close(pipefd[1]);
	char buf[10] = { 0 };
	read(pipefd[0], buf, 10);
	printf("father read successed\n");
	printf("buf=%s\n", buf);
	return 0;
}

上述代码使用的是fork,父进程没有阻塞等待,因此父子进程的执行先后是无法确定的,因此为了防止在子进程向管道写之前父进程就从管道读,子进程在向管道写之前关闭了管道的读描述符。父进程只需要从管道读数据因此关闭写描述符

屏蔽子进程对读描述符关闭和父进程对写描述符关闭的代码,仍能保持子进程先于父进程执行的顺序

fork之后父子进程的执行顺序不定,以上代码为什么能够保证子进程先向管道写数据,父进程再从管道读数据?原因如下:

pipe管道:创建出来的默认的文件描述符是阻塞的,不是非阻塞

是因为管道读写规则,当管道没有数据可读时,read调用阻塞,因此子进程执行完成之前父进程read操作会阻塞

向minishell增加管道
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
# include <string.h>
# include <fcntl.h>
# define MAX_CMD 1024
char command[MAX_CMD];
int do_face()
{
	memset(command, 0x00, MAX_CMD);
	printf("minishell$ ");
	fflush(stdout);
	if (scanf("%[^\n]%*c", command) == 0) {
		getchar();
		return -1;
	}
	return 0;
}
char** do_parse(char* buff)
{
	int argc = 0;
	static char* argv[32];
	char* ptr = buff;
	while (*ptr != '\0') {
		if (!isspace(*ptr)) {
			argv[argc++] = ptr;
			while ((!isspace(*ptr)) && (*ptr) != '\0') {
				ptr++;
			}
			continue;
		}
		*ptr = '\0';
		ptr++;
	}
	argv[argc] = NULL;
	return argv;
}
int do_redirect(char* buff)
{
	char* ptr = buff, * file = NULL;
	int type = 0, fd, redirect_type = -1;
	while (*ptr != '\0') {
		if (*ptr == '>') {
			*ptr++ = '\0';
			redirect_type++;
			if (*ptr == '>') {
				*ptr++ = '\0';
				redirect_type++;
			}
			while (isspace(*ptr)) {
				ptr++;
			}
			file = ptr;
			while ((!isspace(*ptr)) && *ptr != '\0') {
				ptr++;
			}
			*ptr = '\0';
			if (redirect_type == 0) {
				fd = open(file, O_CREAT | O_TRUNC | O_WRONLY, 0664);
			}
			else {
				fd = open(file, O_CREAT | O_APPEND | O_WRONLY, 0664);
			}
			dup2(fd, 1);
		}
		ptr++;
	}
	return 0;
}
int do_command(char* buff)
{
	int pipe_num = 0, i;
	char* ptr = buff;
	int pipefd[32][2] = { {-1} };
	int pid = -1;
	pipe_command[pipe_num] = ptr;
	while (*ptr != '\0') {
		if (*ptr == '|') {
			pipe_num++;
			*ptr++ = '\0';
			pipe_command[pipe_num] = ptr;
			continue;
		}
		ptr++;
	}
	pipe_command[pipe_num + 1] = NULL;
	return pipe_num;
}
int do_pipe(int pipe_num)
{
	int pid = 0, i;
	int pipefd[10][2] = { {0} };
	char** argv = { NULL };
	for (i = 0; i <= pipe_num; i++) {
		pipe(pipefd[i]);
	}
	for (i = 0; i <= pipe_num; i++) {
		pid = fork();
		if (pid == 0) {
			do_redirect(pipe_command[i]);
			argv = do_parse(pipe_command[i]);
			if (i != 0) {
				close(pipefd[i][1]);
				dup2(pipefd[i][0], 0);
			}
			if (i != pipe_num) {
				close(pipefd[i + 1][0]);
				dup2(pipefd[i + 1][1], 1);
			}
			execvp(argv[0], argv);
		}
		else {
			close(pipefd[i][0]);
			close(pipefd[i][1]);
			waitpid(pid, NULL, 0);
		}
	}
	return 0;
}
int main(int argc, char* argv[])
{
	int num = 0;
	while (1) {
		if (do_face() < 0)
			continue;
		num = do_command(command);
		do_pipe(num);
	}
	return 0;
}
匿名管道读写规则
  • 当没有数据可读时

    • O_NONBLOCK disable:read调用阻塞,即进程暂停执行,一直等到有数据来到为止。
      
    • O_NONBLOCK enable:read调用返回-1,errno值为EAGAIN。
      
  • 当管道满的时候

    • O_NONBLOCK disable: write调用阻塞,直到有进程读走数据
      
    • O_NONBLOCK enable:调用返回-1,errno值为EAGAIN
      
  • 如果所有管道写端对应的文件描述符被关闭,则read返回0

  • 如果所有管道读端对应的文件描述符被关闭,则write操作会产生信号SIGPIPE,进而可能导致write进程退出

  • 当要写入的数据量不大于PIPE_BUF时,linux将保证写入的原子性。

  • 当要写入的数据量大于PIPE_BUF时,linux将不再保证写入的原子性。

匿名管道特点
  • 只能用于具有共同祖先的进程(具有亲缘关系的进程)之间进行通信;通常,一个管道由一个进程创建,然后该进程调用fork,此后父、子进程之间就可应用该管道。

  • 管道提供流式服务

  • 一般而言,进程退出,管道释放,所以管道的生命周期随进程

  • 一般而言,内核会对管道操作进行同步与互斥

  • 管道是半双工的,数据只能向一个方向流动;需要双方通信时,需要建立起两个管道



命名管道
  • 管道应用的一个限制就是只能在具有共同祖先(具有亲缘关系)的进程间通信。

  • 如果我们想在不相关的进程之间交换数据,可以使用FIFO文件来做这项工作,它经常被称为命名管道。

  • 命名管道是一种特殊类型的文件

创建一个命名管道
从命令行上创建
mkfifo filename
从程序里创建

相关函数:int mkfifo(const char *filename,mode_t mode);

man 3 mkfifo

mkfifo() makes a FIFO special file with name pathname. mode specifies the FIFO’s permissions. It is modified by the process’s umask in the usual way: the permissions of the created file are (mode & ~umask).

On success mkfifo() returns 0. In the case of an error, -1 is returned

  • mkfifo用路径名创建一个特殊的文件,mode参数指定文件权限,通过进程掩码umask定义:mode & ~umask

  • umask第1组数字用于定义特殊权限,后三位分别是所有者u,所属组g,其他人o的权限

  • 对于root用户,系统默认的umask值是0022;对于普通用户,系统默认的umask值是0002

  • 成功返回0,失败返回-1

#include <stdio.h>
int main(int argc, char *argv[])
{
    int ret = mkfifo("p2", 0644);  //mode是8进制 0644 & ~umask 普通用户: 0644 & ~0002 --> 0644 & 7775  --> 0640
    if(0 == ret)
        printf("creat FIFO successed!\n");
    else
        printf("creat FIFO failed!\n");
    return 0;
}

在这里插入图片描述

查看umask:

在这里插入图片描述

匿名管道和命名管道的区别

FIFO(命名管道)与pipe(匿名管道)之间的区别在它们创建与打开的方式不同,一但这些工作完成之后,它们具有相同的语义;还有就是匿名管道只能用于具有亲缘关系的进程之间通信,命名管道可以用于任何进程之间通信。

匿名管道由pipe函数创建并打开;命名管道由mkfifo函数创建,打开用open。

命名管道的打开规则
  • 如果当前打开操作是为读而打开FIFO时

    • O_NONBLOCK disable:阻塞直到有相应进程为写而打开该FIFO
      
    • O_NONBLOCK enable:立刻返回成功
      
  • 如果当前打开操作是为写而打开FIFO时

    • O_NONBLOCK disable:阻塞直到有相应进程为读而打开该FIFO
      
    • O_NONBLOCK enable:立刻返回失败,错误码为ENXIO
      
用命名管道实现文件拷贝
读取文件,写入命名管道:
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h> //O_RDONLY,O_WRONLY,O_RDWR,O_TRUNC
#define ERR_EXIT(m) \
do \
{ \
perror(m); \
exit(EXIT_FAILURE); \
} while(0)
int main(int argc, char* argv[])
{
	mkfifo("tp", 0644);
	int infd;
	infd = open("abc", O_RDONLY);
	if (infd == -1) ERR_EXIT("open");
	int outfd;
	outfd = open("tp", O_WRONLY);
	if (outfd == -1) ERR_EXIT("open");
	char buf[1024];
	int n;
	while ((n = read(infd, buf, 1024)) > 0)
	{
		write(outfd, buf, n);
	}
	close(infd);
	close(outfd);
	return 0;
}

O_RDONLY 只读,O_WRONLY 只写,O_RDWR 可读可写,O_TRUNC 若文件存在则长度被截为0(属性不变)

读取管道,写入目标文件:
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h> //O_RDONLY,O_WRONLY,O_RDWR,O_TRUNC
#define ERR_EXIT(m) \
do \
{ \
perror(m); \
exit(EXIT_FAILURE); \
} while(0)
int main(int argc, char* argv[])
{
	int outfd;
	outfd = open("abc.bak", O_WRONLY | O_CREAT | O_TRUNC, 0644);
	if (outfd == -1) ERR_EXIT("open");
	int infd;
	infd = open("tp", O_RDONLY);
	if (outfd == -1)
		ERR_EXIT("open");
	char buf[1024];
	int n;
	while ((n = read(infd, buf, 1024)) > 0)
	{
		write(outfd, buf, n);
	}
	close(infd);
	close(outfd);
	unlink("tp");
	return 0;
}

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在minishell中添加管道的实现:
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
# include <string.h>
# include <fcntl.h>
# define MAX_CMD 1024
char command[MAX_CMD];
int do_face()
{
	memset(command, 0x00, MAX_CMD);
	printf("minishell$ ");
	fflush(stdout);
	if (scanf("%[^\n]%*c", command) == 0) {
		getchar();
		return -1;
	}
	return 0;
}
char** do_parse(char* buff)
{
	int argc = 0;
	static char* argv[32];
	char* ptr = buff;
	while (*ptr != '\0') {
		if (!isspace(*ptr)) {
			argv[argc++] = ptr;
			while ((!isspace(*ptr)) && (*ptr) != '\0') {
				ptr++;
			}
			continue;
		}
		*ptr = '\0';
		ptr++;
	}
	argv[argc] = NULL;
	return argv;
}
int do_redirect(char* buff)
{
	char* ptr = buff, * file = NULL;
	int type = 0, fd, redirect_type = -1;
	while (*ptr != '\0') {
		if (*ptr == '>') {
			*ptr++ = '\0';
			redirect_type++;
			if (*ptr == '>') {
				*ptr++ = '\0';
				redirect_type++;
			}
			while (isspace(*ptr)) {
				ptr++;
			}
			file = ptr;
			while ((!isspace(*ptr)) && *ptr != '\0') {
				ptr++;
			}
			*ptr = '\0';
			if (redirect_type == 0) {
				fd = open(file, O_CREAT | O_TRUNC | O_WRONLY, 0664);
			}
			else {
				fd = open(file, O_CREAT | O_APPEND | O_WRONLY, 0664);
			}
			dup2(fd, 1);
		}
		ptr++;
	}
	return 0;
}
int do_command(char* buff)
{
	int pipe_num = 0, i;
	char* ptr = buff;
	int pipefd[32][2] = { {-1} };
	int pid = -1;
	pipe_command[pipe_num] = ptr;
	while (*ptr != '\0') {
		if (*ptr == '|') {
			pipe_num++;
			*ptr++ = '\0';
			pipe_command[pipe_num] = ptr;
			continue;
		}
		ptr++;
	}
	pipe_command[pipe_num + 1] = NULL;
	return pipe_num;
}
int do_pipe(int pipe_num)
{
	int pid = 0, i;
	int pipefd[10][2] = { {0} };
	char** argv = { NULL };
	for (i = 0; i <= pipe_num; i++) {
		pipe(pipefd[i]);
	}
	for (i = 0; i <= pipe_num; i++) {
		pid = fork();
		if (pid == 0) {
			do_redirect(pipe_command[i]);
			argv = do_parse(pipe_command[i]);
			if (i != 0) {
				close(pipefd[i][1]);
				dup2(pipefd[i][0], 0);
			}
			if (i != pipe_num) {
				close(pipefd[i + 1][0]);
				dup2(pipefd[i + 1][1], 1);
			}
			execvp(argv[0], argv);
		}
		else {
			close(pipefd[i][0]);
			close(pipefd[i][1]);
			waitpid(pid, NULL, 0);
		}
	}
	return 0;
}
int main(int argc, char* argv[])
{
	int num = 0;
	while (1) {
		if (do_face() < 0)
			continue;
		num = do_command(command);
		do_pipe(num);
	}
	return 0;
}
用命名管道实现server&client通信
serverPipe.c
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#define ERR_EXIT(m) \
do{\
perror(m);\
exit(EXIT_FAILURE);\
}while(0)
int main()
{
	umask(0);
	if (mkfifo("mypipe", 0644) < 0) {
		ERR_EXIT("mkfifo");
	}
	int rfd = open("mypipe", O_RDONLY);
	if (rfd < 0) {
		ERR_EXIT("open");
	}
	char buf[1024];
	while (1) {
		buf[0] = 0;
		printf("Please wait...\n");
		ssize_t s = read(rfd, buf, sizeof(buf) - 1);
		if (s > 0) {
			buf[s - 1] = 0;
			printf("client say# %s\n", buf);
		}
		else if (s == 0) {
			printf("client quit, exit now!\n");
			exit(EXIT_SUCCESS);
		}
		else {
			ERR_EXIT("read");
		}
	}
	close(rfd);
	return 0;
}
clientPipe.c
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#define ERR_EXIT(m) \
do{\
perror(m);\
exit(EXIT_FAILURE);\
}while(0)
int main()
{
	int wfd = open("mypipe", O_WRONLY);
	if (wfd < 0) {
		ERR_EXIT("open");
	}
	char buf[1024];
	while (1) {
		buf[0] = 0;
		printf("Please Enter# ");
		fflush(stdout);
		ssize_t s = read(0, buf, sizeof(buf) - 1);
		if (s > 0) {
			buf[s] = 0;
			write(wfd, buf, strlen(buf));
		}
		else if (s <= 0) {
			ERR_EXIT("read");
		}
	}
	close(wfd);
	return 0;
}

system V共享

共享内存区是最快的IPC 1形式。一旦这样的内存映射到共享它的进程的地址空间,这些进程间数据传递不再涉及到内核,换句话说是进程不再通过执行进入内核的系统调用来传递彼此的数据

在这里插入图片描述

共享内存数据结构
struct shmid_ds {
struct ipc_perm shm_perm; /* operation perms */
int shm_segsz; /* size of segment (bytes) */
__kernel_time_t shm_atime; /* last attach time */
__kernel_time_t shm_dtime; /* last detach time */
__kernel_time_t shm_ctime; /* last change time */
__kernel_ipc_pid_t shm_cpid; /* pid of creator */
__kernel_ipc_pid_t shm_lpid; /* pid of last operator */
unsigned short shm_nattch; /* no. of current attaches */
unsigned short shm_unused; /* compatibility */
void *shm_unused2; /* ditto - used by DIPC */
void *shm_unused3; /* unused */
};
共享内存函数

注意:共享内存没有进行同步与互斥!

shmget函数
功能

用来创建共享内存

原型

int shmget(key_t key, size_t size, int shmflg);

参数

key:这个共享内存段名字
size:共享内存大小
shmflg:由九个权限标志构成,它们的用法和创建文件时使用的mode模式标志是一样的

返回值

成功返回一个非负整数,即该共享内存段的标识码;失败返回-1

shmat函数
功能

将共享内存段连接到进程地址空间

原型

void *shmat(int shmid, const void *shmaddr, int shmflg);

参数

shmid: 共享内存标识
shmaddr:指定连接的地址
shmflg:它的两个可能取值是SHM_RND和SHM_RDONLY

shmaddr为NULL,核心自动选择一个地址

shmaddr不为NULL且shmflg无SHM_RND标记,则以shmaddr为连接地址。

shmaddr不为NULL且shmflg设置了SHM_RND标记,则连接的地址会自动向下调整为SHMLBA的整数倍。公式:

shmaddr - (shmaddr % SHMLBA)

shmflg=SHM_RDONLY,表示连接操作用来只读共享内存

返回值

成功返回一个指针,指向共享内存第一个节;失败返回-1

shmdt函数
功能

将共享内存段与当前进程脱离

原型

int shmdt(const void *shmaddr);

参数

shmaddr: 由shmat所返回的指针

返回值

成功返回0;失败返回-1

注意

将共享内存段与当前进程脱离不等于删除共享内存段

shmctl函数
功能

用于控制共享内存

原型

int shmctl(int shmid, int cmd, struct shmid_ds *buf);

参数

shmid:由shmget返回的共享内存标识码
cmd:将要采取的动作(有三个可取值)
buf:指向一个保存着共享内存的模式状态和访问权限的数据结构

返回值

成功返回0;失败返回-1

命令cmd说明
IPC_STAT把shmid_ds结构中的数据设置为共享内存的当前关联值
IPC_SET在进程有足够权限的前提下,把共享内存的当前关联值设置为 shmid_ds数据结构中给出的值
IPC_RMID删除共享内存段
实例代码
comm.h
#ifndef _COMM_H_
#define _COMM_H_
# include <stdio.h>
# include <sys/types.h>
# include <sys/ipc.h>
# include <sys/shm.h>
# define PATHNAME "."
# define PROJ_ID 0x6666
int createShm(int size);
int destroyShm(int shmid);
int getShm(int size);
# endif
comm.c
#include "comm.h"
static int commShm(int size, int flags)
{
	key_t key = ftok(PATHNAME, PROJ_ID);
	if (key < 0) {
		perror("ftok");
		return -1;
	}
	int shmid = 0;
	if ((shmid = shmget(_key, size, flags)) < 0) {
		perror("shmget");
		return -2;
	}
	return shmid;
}
int destroyShm(int shmid)
{
	if (shmctl(shmid, IPC_RMID, NULL) < 0) {
		perror("shmctl");
		return -1;
	}
	return 0;
}
int createShm(int size)
{
	return commShm(size, IPC_CREAT | IPC_EXCL | 0666);
}
int getShm(int size)
{
	return commShm(size, IPC_CREAT);
}
server.c
#include "comm.h"
int main()
{
	int shmid = createShm(4096);
	char* addr = shmat(shmid, NULL, 0);
	sleep(2);
	int i = 0;
	while (i++ < 26) {
		printf("client# %s\n", addr);
		sleep(1);
	}
	shmdt(addr);
	sleep(2);
	destroyShm(shmid);
	return 0;
}
client.c
#include "comm.h"
int main()
{
	int shmid = getShm(4096);
	sleep(1);
	char* addr = shmat(shmid, NULL, 0);
	sleep(2);
	int i = 0;
	while (i < 26) {
		addr[i] = 'A' + i;
		i++;
		addr[i] = 0;
		sleep(1);
	}
	shmdt(addr);
	sleep(2);
	return 0;
}



system V消息队列

  • 消息队列提供了一个从一个进程向另外一个进程发送一块数据的方法
  • 每个数据块都被认为是有一个类型,接收者进程接收的数据块可以有不同的类型值
  • 特性方面:IPC资源必须删除,否则不会自动清除,除非重启,所以system V IPC资源的生命周期随内核



system V信号量

信号量主要用于同步和互斥的

进程互斥
  • 由于各进程要求共享资源,而且有些资源需要互斥使用,因此各进程间竞争使用这些资源,进程的这种关系为进程的互斥
  • 系统中某些资源一次只允许一个进程使用,称这样的资源为临界资源或互斥资源。
  • 在进程中涉及到互斥资源的程序段叫临界区

  1. Inter-Process Communication ↩︎

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值