English 中文(简体)
在管道输出( C++) 后出现的符号
原标题:^@ symbol appearing after piping output (C++)
  • 时间:2012-05-23 04:05:40
  •  标签:
  • c++
  • pipe
  • lcs

(笑声) (掌声) 所以我在C++(CLRS)中应用了最古老的共同子序列算法(CLRS)入门, 它的工作很顺利。当我做这样的事情时:

./lcs abc bc> OUTPUT

当我打开 OUTPUT 文件 vim 中的 vim 文件时,我看到:

2 bc/code>

正确的是, sans that weird under 符号。 我做了一些古灵化的符号。 这似乎是某种 NULLL 字符吗?

我从来没有遇到过这个问题... 有人知道怎么摆脱它吗?

Thanks! -kstruct

EDIT Here s the code that does the printing:

cout << lcsLength << " ";
    if (lcsLength > 0) cout << lcsString;

return 0;

lcsStringstd:::string 的地方。 不知道这是否有帮助...

最佳回答

您已经展示了输出 lcsString 的代码, 但与 C 样式字符串不同, 一种 < code>std::: string type 可以包含空字符, 因为长度与字符串数据本身分开维持 。

尝试添加以下内容以倾弃字符串的内容 :

cout << "length of lcsString: " << lcsString.length() << endl;
cout <<  "  << lcsString <<  "  << endl;
for (int i = 0; i < lcsString.length(); ++i) {
    cout << hex <<  int(lcsString[i]) << " ";
}
cout << endl;

我敢打赌,你会看到:

length of lcsString: 3
"bc "
62 63 0 

然后您需要找出您正在做的创建(或修改) lcsString < lcsstring <, 从而在结尾处含有无效字符 。

问题回答

s NUL (这是一个 字符 值,定义为所有位数-零),而不是 NULL (这是一个 指针 ,几乎总是全部位数-零,但不需要) 。

我们需要看到你的代码才能确定, 但最有可能的原因是 你打印了一个C字符串的字节( 总是有 < code> NUL 作为它的最后字节) 。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签