- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在做一个学校作业,我必须调用 execvp,其方法签名如下
execvp(const char* file, char* const argv[])
但是我的数据是这样的:
std::vector<std::string*>
我一直在尝试将所述 vector 转换为 execvp()
的第二种格式的正确格式,但不可避免地会出现以下错误:
command.cc:120:29: error: invalid conversion from ‘const char**’ to ‘char* const*’ [-fpermissive]
execvp(args[0], argv);
我尝试了不同的变体,但它们都会导致此错误。这个错误让我很困惑,因为我不知道 const*
是什么意思。你怎么能有一个const*
?我会考虑将 std::vector
更改为其他类型,但这是一项任务,我真的不允许更改它。下面是我用来尝试从 vector 创建 char*[]
的代码:
const size_t numArgs = _simpleCommands[i]->_arguments.size();
std::vector<const char*> args;
for(size_t j = 0; j < numArgs; ++j)
{
args.push_back(strPtrToCharPtr(_simpleCommands[i]->_arguments[i]));
}
const char** argv = new const char*[numArgs];
for(size_t j = 0; j < numArgs; ++j)
{
argv[j] = args[j];
}
execvp(args[0], argv);
最佳答案
char* const argv[]
原型(prototype)意味着argv
是指向 char
的指针数组(的地址) ,数组中的指针不能被修改,但是它们指向的字符串可以。这不同于 char const **
, 这是指向 char
的指针不能修改其字符。因为将它传递给可能修改数组中的字符串的函数会违反 const
const char **
的预选赛, 这个不允许。 (你可以用 const_cast
来做,但那会解决错误的问题。)
自 execvp()
是一个非常古老的 UNIX 函数,今天不会有相同的接口(interface),它没有任何参数来告诉操作系统有多少参数,也没有 promise 不修改数组中字符串的内容。通过将最终元素设置为 NULL
来终止数组.
它的格式类似于 argv
main()
的参数.事实上,它变成了 argv
main()
的参数您运行的程序的功能,如果它是用 C 编写的。
这不是一个完整的解决方案,因为这是一项家庭作业,您想自己解决它,但您必须自己创建该数组。您可以通过创建 std::vector<char *> argv( args.size() + 1 )
来做到这一点, 将除最后一个元素之外的每个元素设置为 .data()
来自 args
对应元素的指针, 并将最后一个元素设置为 NULL
.然后,通过 argv.data()
至 execvp()
.
请注意 the POSIX.1-2008 standard说,
The
argv[]
andenvp[]
arrays of pointers and the strings to which those arrays point shall not be modified by a call to one of the exec functions, except as a consequence of replacing the process image.
因此,您应该能够摆脱 const
的惩罚。 - 如果您不介意冒险,就检查数组中的字符串,这一次。通常,您需要为数组中的每个常量字符串创建一个可修改的拷贝。
时间已经过去了,我不会给出家庭作业的答案。一位评论者声称我的答案不适用于 g++8,这意味着他们没有实现我正在考虑的相同算法。因此,发布完整的解决方案将会有所帮助。
这实际上解决了如何转换 std::vector<std::string>
的密切相关问题用于 execvp()
. (std::vector<std::string*>
基本上永远不会正确,当然也不在这里。如果您真的非常想要一个,请在 s
循环中更改 for
的类型并取消引用。)
#define _XOPEN_SOURCE 700
// The next three lines are defensive coding:
#define _POSIX_C_SOURCE 200809L
#define _XOPEN_VERSION 700
#define _XOPEN_UNIX 1
#include <errno.h>
#include <stdlib.h>
#include <string>
#include <unistd.h>
#include <vector>
int main()
{
const std::vector<std::string> cmdline{ "ls", "-al" };
std::vector<const char*> argv;
for ( const auto& s : cmdline ) {
argv.push_back( s.data() );
}
argv.push_back(NULL);
argv.shrink_to_fit();
errno = 0;
/* Casting away the const qualifier on the argument list to execvp() is safe
* because POSIX specifies: "The argv[] [...] arrays of pointers and the
* strings to which those arrays point shall not be modified by a call to
* one of the exec functions[.]"
*/
execvp( "/bin/ls", const_cast<char* const *>(argv.data()) );
// If this line is reached, execvp() failed.
perror("Error executing /bin/ls");
return EXIT_FAILURE;
}
另一个转折是编写一个返回 std::vector<const char*>
的转换函数包含命令行参数。由于有保证的复制省略,这同样有效。我通常喜欢使用 RIIA 和静态单一赋值进行编码,所以我发现返回一个生命周期自动管理的对象更优雅。在这种情况下,argv
的元素是对 cmdline
中字符串的弱引用, 所以 cmdline
必须比 argv
长寿.因为我们使用 C 风格的指针作为弱引用,所以 RIIA 在这里不起作用,我们仍然需要注意对象的生命周期。
#define _XOPEN_SOURCE 700
#define _POSIX_C_SOURCE 200809L
#define _XOPEN_VERSION 700
#define _XOPEN_UNIX 1
#include <errno.h>
#include <stdlib.h>
#include <string>
#include <unistd.h>
#include <vector>
std::vector<const char*> make_argv( std::vector<std::string>const& in )
{
std::vector<const char*> out;
out.reserve( in.size() + 1 );
for ( const auto& s : in ) {
out.push_back( s.data() );
}
out.push_back(NULL);
out.shrink_to_fit();
return out; // Benefits from guaranteed copy elision.
}
int main()
{
const std::vector<std::string> cmdline{ "ls", "-al" };
errno = 0;
/* Casting away the const qualifier on the argument list to execvp() is safe
* because POSIX specifies: "The argv[] [...] arrays of pointers and the
* strings to which those arrays point shall not be modified by a call to
* one of the exec functions[.]"
*/
execvp( "/bin/ls", const_cast<char* const *>(make_argv(cmdline).data()) );
// If this line is reached, execvp() failed.
perror("Error executing /bin/ls");
return EXIT_FAILURE;
}
关于c++ - 从 'const char**' 到 'char* const*' 的无效转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48727690/
这个问题在这里已经有了答案: Why don't Java's +=, -=, *=, /= compound assignment operators require casting? (11 个
当我尝试运行以下代码时,List(.of) 无法编译并给出主题错误。 package collections; import java.util.LinkedHashSet; import java.
我正在尝试编译使用 ChatScript 库的程序。这是我在名为 main.cpp 的文件中的代码: #include #include "common.h" using namespace std
我想在我的程序中外部使用 ChatScript。在documents它说: Embedding Step #1 First, you will need to modify `common.h and
假设我有一个 char,我想用一行代码将其 strcat() 转换为 char 数组。对于 [一个非实用的] 示例: strcat("ljsdflusdfg",getchar()); 或者我想做相反的
我有以下类型签名: *Main Lib> let f :: a -> a -> a -> a; f = undefined *Main Lib> let x :: Char; x = undefin
我正在学习如何在 C 中使用指针(使用 malloc 和 free),但我在这个练习中遇到了一些麻烦。我只想制作一个指针数组,我想在其中保存每个单词的方向。然后我想为一个特定的词做一个 free(),
我有一个字符*: char* version = "10.5.108"; 我想通过字符分隔符获取两个新的 char*。 char delimiter = '.'; 执行以下代码后: printf("|
最近在学习Cpp,今天在学习使用Clion做测试的时候,发生了奇怪的事情。 这是我的代码 int main() { char c = 'b'; char carr[1]{'a'};
我对 c 很陌生,我正在审查一些代码。我遇到了这个: static char * fromDataType; static char * toDataType; static char * fromR
我有一个像这样的动态结构: struct network { int count; char** ips; } 如果我知道每个字符串数组都是 16 个字节(即 INET_ADDRSTR
我有一个旧程序,其中使用了一些库函数,但我没有那个库。 所以我正在使用 C++ 库编写该程序。在那个旧代码中有一些函数是这样调用的 *string = newstrdup("这里有一些字符串"); 字
我正在编写一个函数,该函数接受 ArrayList,然后将每个 char[] 复制到另一个增加长度的 char[] 中,然后将新的 char[] 添加到新的 ArrayList 中。当我尝试复制数组时
我正在寻找 map >并生成每个可能的 map从它。 我知道这可能会占用大量内存并需要一些时间。 每个map需要包含每个字母 a-z,并映射到唯一的 a-z 字符。 IE。啊bjcp迪EVfh嘎血红蛋
#define NAME_LEN 20 #include "stdio.h" #include "stdlib.h" #include "string.h" #pragma warning(disab
所以我必须创建一个函数来找到一对带有第一个字母并返回第二个字母的函数。 我实际上找到了一个答案,但是使用 map 功能却找不到。 lookUp :: Char -> [(Char, Cha
我最近接受采访并要求写mystrcat(*s1, *s2, *s3) 其中s1 和s2 是源字符串连接结果由 s3 给出。有人告诉我,不要担心 s3 的内存分配,并假设 s1 和 s2 不是空/无效字
今天我与一位同事讨论了他(对我来说)不寻常的“main”函数签名。他喜欢这样声明: int main(int argc, char* (*argv)[]) { printf("at index
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: What's the difference between new char[10] and new cha
通常字符串文字是 const char[] 类型。但是当我把它当作其他类型时,我得到了奇怪的结果。 unsigned char *a = "\355\1\23"; 使用此编译器会抛出警告“初始化中的指
我是一名优秀的程序员,十分优秀!