CppDS.com

C++ 98 11 14 17 20 手册

std::system

来自cppreference.com
< cpp‎ | utility‎ | program
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
定义于头文件 <cstdlib>
int system( const char* command );

以参数 command 调用运行环境的命令处理器(例如 /bin/shcmd.execommand.com )。返回相应实现的定义值(通常是被调用程序所返回的值)。

command 为空,则检查运行环境是否有命令处理器,并当且仅当命令行存在才返回非零。

参数

command - 标识要运行于命令处理器的命令字符串。若给出空指针,则检查命令处理器的存在性

返回值

实现定义值。若 command 为空指针,则当且仅当命令处理器存在才返回非零值。

注意

POSIX 系统上,可用 WEXITSTATUS 和 WSTOPSIG 分解返回值。

相关的 POSIX 函数 popen 使调用方可获取到 command 生成的输出。

示例

#include <cstdlib>
#include <fstream>
#include <iostream>
 
int main()
{
    std::system("ls -l >test.txt"); // 执行 UNIX 命令 "ls -l >test.txt"
    std::cout << std::ifstream("test.txt").rdbuf();
}

可能的输出:

total 16
-rwxr-xr-x 1 2001 2000 8859 Sep 30 20:52 a.out
-rw-rw-rw- 1 2001 2000  161 Sep 30 20:52 main.cpp
-rw-r--r-- 1 2001 2000    0 Sep 30 20:52 test.txt

参阅

关闭