Chinaunix

标题: perl怎么给cpp传递参数 [打印本页]

作者: 很宅的男    时间: 2018-02-06 17:11
标题: perl怎么给cpp传递参数
大家好,现在有一个已经编译好的cpp程序,我现在想写一个perl脚本给这个程序传递几个参数,请问大家知道怎么处理吗?

作者: jason680    时间: 2018-02-06 20:53
http://bbs.chinaunix.net/thread-4292232-1-1.html
http://bbs.chinaunix.net/thread-4267967-1-1.html
作者: 523066680    时间: 2018-02-06 21:51
如果是基于函数的传参,那么可能就是需要 Inline::CPP
https://metacpan.org/release/Inline-CPP
作者: jeppeter    时间: 2018-02-07 09:23
回复 1# 很宅的男

  1. use strict;
  2. use IPC::Open3;

  3. my $pid = open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR, 'cat')
  4.     or die "open3() failed $!";

  5. my $r;

  6. for(my $i=1;$i<10;$i++) {
  7.     print CHLD_IN "$i\n";
  8.     $r = <CHLD_OUT>;
  9.     print "Got $r from child\n";
  10. }
复制代码
这个例子可以满足你的要求,上面的是进行cat的处理。





欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2