English 中文(简体)
删除C++字符*有点地址
原标题:Remove C++ char* has point address
  • 时间:2011-02-03 18:05:13
  •  标签:
  • c++

由于我更改了项目设置,下面的布尔值返回false,因为在调试器中,char*参数的值包含指针地址。我该如何删除它?

我创建了这个简单的例子来说明(我必须保持char*数据类型),并且我不能进行模式匹配来删除指针地址。

void Test(char* thisValue) 
{
if (thisValue == "PassingTest")
{
bo = true;
}
else
{
bo = false;
}
}

在调试器中,我发现thisValue=“PassingTest”

请指导如何让thisValue只包含“PassingTest”作为值,而不包含指针地址。

最佳回答

==运算符无法比较C中的字符串值;它只能比较它们的指针。使用strcmp函数测试两个字符串是否相等(如果相等,则返回0)。

问题回答

这就是字符的工作原理——它们是指向内存中字符的指针。如果您想要一个支持值的字符串,可以使用#include<;字符串>

使用char*s时,可以使用

if (strcmp(thisValue, "PassingTest") == 0)

如果您不打算修改函数中的字符串内容,您可以接受constchar*thisValue,而不仅仅是char*thisFalue

if (thisValue == "PassingTest")

这将不起作用,因为thisValuechar*

使用std::string

if (std::string(thisValue) == "PassingTest")

它现在会起作用的。

如果你这样做会更好:

void Test(const std::string & thisValue) 
{
    bo = (thisValue == "PassingTest") ;
}

您不能保证两个相同的文字字符串将驻留在相同的内存地址。

如果他们这样做了,那就是“恒定折叠”的一个例子,这是一种可能完成也可能不完成的优化。

所以您的代码具有任意结果。

为了避免这个问题,只需使用std::string而不是原始指针和原始数组。

喜欢

void test( std::string const& thisValue )
{
    bo = (thisValue == "PassingTest");
}

干杯&;高。,

原因是在C++中,if块中的比较是比较指针地址,而不是string值。要比较实际的string值,您需要使用类似strcmp的函数,或者更好地使用STL字符串

void Test(const stl::string thisValue) {
  if (thisValue == "PassingTest") {
    bo = true;
  } else { 
    bo = false;
  }
}

在C中使用strcmp(3)。C++对此有很好的std::string





相关问题
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?