Eclipse C++ 字符串作为函数参数

Posted

技术标签:

【中文标题】Eclipse C++ 字符串作为函数参数【英文标题】:Eclipse C++ String as function parameter 【发布时间】:2018-09-19 06:16:41 【问题描述】:

我遇到了一个错误函数的问题,它的目的是检查一个变量,在某些情况下告诉我变量的名称和它的值。

我想为函数提供值和名称(作为字符串),但我在以某种方式声明字符串时遇到问题(Eclipse MinGW C++)。

如果有人能指出我的错误或向我展示一个很棒的解决方法!

这是代码:

#include <string>
#include <iostream>

using namespace std;

int *ierr;

std::string(varname); //problem here, doesnt recognize the string

void error(double varvalue, std::string varname)
 
        if (varvalue == 0 ) 
            *ierr = 11;
            cout << "Error: " << varname << " has an invalid value (equal 0)";
            cout << "Error number " << *ierr << endl;
            return;
        
        if (varvalue < 0 ) 
            *ierr = 10;
            cout << "Error: " << varname << " has an invalid value (" << varvalue << " , smaller 0)";
            cout << "Error number: " << *ierr << endl;
            return;
        
 

int main() 
    int Par = 0;
    error(Par,"Par"); //test variable

【问题讨论】:

您遇到了哪些错误? std::string(varname); 到底有什么用途? varname 定义在哪里? 问题是我没有收到编译错误或类似的东西。当我尝试在输出点编译它时,我收到一个 Windows 错误:“Testing.dll 已停止工作”并关闭。 一个更大的问题是,由于int *ierr 是的,正如 GKE 指出的那样,指针 ierr 未初始化,这就是给您带来麻烦的原因。您应该将该行替换为 int *ierr = new int(0); 【参考方案1】:

您没有正确定义字符串值。语法不正确。更严重的是,您声明了一个未初始化的指针*ierr,它会在运行时导致段错误。

我遇到了一个错误函数的问题,它的目的是检查一个变量,在某些情况下告诉我变量的名称和它的值。

下面的代码将为您做到这一点,但了解 when to use pointers. 很重要

此外,您可能应该阅读一下 strings 并熟悉字符串定义、复制、初始化等的样子。

#include <string>
#include <iostream>

using namespace std;

void error(double varvalue, std::string varname)
 

        if (varvalue == 0 )  //if varvalue is equal to 0

            cout << "Error: " << varname << " has an invalid value (equal 0)";
            cout << "Error number " << varvalue << endl;
            return;
        

        if (varvalue < 0 )  //if varvalue is less than 0

            cout << "Error: " << varname << " has an invalid value (" << varvalue << " , smaller 0)";
            cout << "Error number: " << varvalue << endl;
            return;
        

        if (varvalue > 0)  //if varvlue is greater than 0

            cout<<varname<<" has value: "<<varvalue<<endl;

        
 

int main() 

    int Par = 10; // Set initial Par value to 10

    error(Par,"Par"); //test variable


【讨论】:

谢谢,*ierr 是我的问题。将其更改为 ierr,现在它工作正常。我从一个我应该检查得更好的旧程序中复制了那个变量。

以上是关于Eclipse C++ 字符串作为函数参数的主要内容,如果未能解决你的问题,请参考以下文章

使用 C++ 中的 C# DLL:使用字符串作为参数的函数的问题

C++ 数组与字符串⁽²³⁾|函数与数组

将 C# 字符串作为参数发送到非托管 C++ DLL 函数

C++中如何获取参数的值以及对字符串进行处理

从 C++ 传递函数指针以由 C# 调用 - 函数参数包括宽字符字符串 (LPCWSTR)

数组作为函数参数怎么用C++