将Perl移植到C ++`print“\ x {2501}”x 12;`

时间:2013-11-09 17:49:17

标签: c++ perl

我正在将一个程序从Perl移植到C ++作为学习目标。我到达了一个例程,该例程使用如下命令绘制表:

Perl: print "\x{2501}" x 12;

它绘制了12次'━'(“箱形图重水平”)。

现在我已经解决了部分问题:

Perl: \x{}, \x00        Hexadecimal escape sequence;
C++:  \unnnn

要打印单个Unicode字符:

C++:  printf( "\u250f\n" );

但C ++是否具有“x”运算符的智能等价物,还是归结为for循环?


更新 让我包含我试图用建议的解决方案编译的完整源代码。编译器会抛出错误:

g++ -Wall -Werror project.cpp -o project
project.cpp: In function ‘int main(int, char**)’:
project.cpp:38:3: error: ‘string’ is not a member of ‘std’
project.cpp:38:15: error: expected ‘;’ before ‘s’
project.cpp:39:3: error: ‘cout’ is not a member of ‘std’
project.cpp:39:16: error: ‘s’ was not declared in this scope


#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <iostream>

int main ( int argc, char *argv[] )
{
        if ( argc != 2 )   
        {
                fprintf( stderr , "usage: %s matrix\n", argv[0] );
                exit( 2 );
        } else {
                //std::string s(12, "\u250f" );
                std::string s(12, "u" );
                std::cout << s;
        }       
}

1 个答案:

答案 0 :(得分:2)

不,C ++没有“x”运算符,但是你可以创建一个带有字符重复的字符串:

std::string s(12, <any character>);

然后你可以像下面那样打印它(“printf”继承自C,在你的作业中使用它可能不好):

std::cout << s;

(当然,你可以使用任何数字,而不仅仅是12)

上面的更新

更新

我可以只用很小的改动来编译你的代码(“你”代替'u',因为它必须是一个字符)。我的编译器是用于Windows XP的GCC 4.6.2(MINGW32版本)。你使用什么操作系统/编译器?