帮助创建私有方法

时间:2010-02-28 03:31:49

标签: java

我正在开发一个项目并拥有以下的伪代码:

// create a private method, getIntValDialog, that returns an integer value and accepts
// two string values as arguments
    // declare and initialize a string variable, sValue, to an empty string
    // Accept input to sValue from a Input Dialog using smessage, stitle, and a question icon as arguments
    // return the integer converted value of sValue
        // end getIntValDialog method

我有一个想法,但我不太明白如何正确设置它。 psuedocode告诉我我必须做什么,但我只是需要一些帮助来理解和可视化它是如何工作的。任何帮助将不胜感激:)

1 个答案:

答案 0 :(得分:3)

以下是我从伪代码中获得的内容:

// create a private method, getIntValDialog, that returns an integer value and accepts 
// two string values as arguments
private int getIntValDialog(String smessage, String stitle)
{
     // declare and initialize a string variable, sValue, to an empty string
     String sValue = "";

     // Accept input to sValue from a Input Dialog using smessage, stitle,
     //  and a question icon as arguments
     // TODO (this is your part of the task)

     // return the integer converted value of sValue
     return Integer.valueOf(sValue);

// end getIntValDialog method
}

你从这里拿走它。

  

我有个主意,但我不太了解   了解如何设置它   正常。

对未来问题的一些建议:如果您确实有想法,请尽可能发布,并让人们纠正任何错误。它会表现出您正在努力的诚意努力。