stdin

차노·2023년 8월 16일
0

JS

목록 보기
49/96

'stdin' stands for "standard input" in computer programming.

컴퓨터 프로그래밍에서 표준 인풋을 나타낸다.

It is a stream provided by the operating system that allows a program to read input from the user or from another program.

프로그램이 유저나 또 다른 프로그램의 인풋을 읽을 수 있도록 허용하는 운영체제에 의해 제공된 stream이다.

'stdin' is a fundamental concept in command-line interfaces and is commonly used to receive user input in interactive programs.

stdin은 커맨드라인 인터페이스의 기본적인 개념이고, 상호작용하는 프로그램에서 유저 input을 주로 받는 데 사용된다.

  • Standard Input(stdin): This is the default input stream.

    디폴트 input stream이다.

It represents the data that a program receives as input.

input으로서 프로그램이 받는 데이터를 나타낸다.

In many cases, this input comes from the user via the keyboard, but it can also come from redirected input or piped output from another program.

많은 상황에서, 이 input은 유저가 키보드에 입력하는 빙식에서 오지만, 다시 가리키는 input이나 또 다른 프로그램을 통해서도 온다.

In summary, 'stdin' is a way for programs to receive input data from the user or other sources via the command-line interface.

요약해서, stdin은 커맨드 라인 인터페이스를 통한 소스나 유저로부터의 input 데이터를 받아내는 프로그램의 방식이다.

This script was brought back from chat Gpt.

0개의 댓글