> 백엔드 개발 > C++ > 명명된 파이프는 간단한 콘솔 응용 프로그램에서 프로세스 간 통신을 어떻게 촉진할 수 있습니까?

명명된 파이프는 간단한 콘솔 응용 프로그램에서 프로세스 간 통신을 어떻게 촉진할 수 있습니까?

Susan Sarandon
풀어 주다: 2025-01-14 12:30:44
원래의
113명이 탐색했습니다.

How Can Named Pipes Facilitate Inter-Process Communication in a Simple Console Application?

Named Pipe IPC를 시연하는 간단한 콘솔 애플리케이션

명명된 파이프는 단일 시스템에서 IPC(프로세스 간 통신)를 위한 강력한 방법을 제공합니다. 이 예는 명명된 파이프를 사용한 기본 IPC 연결을 보여줍니다.

프로그램 1은 메시지 발신자 역할을 하고 프로그램 2는 메시지를 수신합니다. 프로그램 1은 "Hello World"를 보내고 프로그램 2는 "Roger That"으로 응답합니다.

서버(프로그램 2):

<code class="language-csharp">using System;
using System.IO.Pipes;

namespace ServerApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string pipeName = "MyPipe"; // Named pipe identifier
            using (var server = new NamedPipeServerStream(pipeName))
            {
                server.WaitForConnection();
                Console.WriteLine("Client connected.");

                using (var reader = new StreamReader(server))
                using (var writer = new StreamWriter(server))
                {
                    string message = reader.ReadLine();
                    Console.WriteLine($"Received: {message}");
                    writer.WriteLine("Roger That");
                    writer.Flush();
                }
            }
        }
    }
}</code>
로그인 후 복사

클라이언트(프로그램 1):

<code class="language-csharp">using System;
using System.IO.Pipes;

namespace ClientApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string pipeName = "MyPipe"; // Must match server's pipe name
            using (var client = new NamedPipeClientStream(pipeName))
            {
                client.Connect();
                Console.WriteLine("Connected to server.");

                using (var reader = new StreamReader(client))
                using (var writer = new StreamWriter(client))
                {
                    writer.WriteLine("Hello World");
                    writer.Flush();
                    Console.WriteLine("Sent: Hello World");
                    string response = reader.ReadLine();
                    Console.WriteLine($"Received: {response}");
                }
            }
        }
    }
}</code>
로그인 후 복사

실행하려면 ServerApp.exe을 먼저 시작한 다음 ClientApp.exe을 실행하세요. 이는 간단한 프로세스 간 통신을 위해 명명된 파이프를 사용하는 기본 원칙을 보여줍니다. 필요한 경우 pipeName를 조정하세요.

위 내용은 명명된 파이프는 간단한 콘솔 응용 프로그램에서 프로세스 간 통신을 어떻게 촉진할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿