- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这是我的第一篇文章,也是我在 C# 中的第一个学期。我有一个家庭作业,我已经做了好几天了,但我想不出来。我将尽力解释它。
所以我必须创建一个类来调用另外两个类并编译这些类以进行打印。假设用户从菜单中选择一个数字,然后假设该数字进行数学运算并打印答案。我无法获取生成选择和执行数学运算的代码。
这是我的第一个类。
class MainModule
{
static void Main()
{
string assignment = "Assignment#3B-Math Operations Modified";
MathOperationUI myNumber = new MathOperationUI();
myNumber.MathMainModule();
Console.ReadLine();
这是我的第二堂课。
class MathOperations
{
int firstOperand;
int secondOperand;
public int FirstOperand
{
get
{
return firstOperand;
}
set
{
firstOperand = value;
}
}
public int SecondOperand
{
get
{
return secondOperand;
}
set
{
secondOperand = value;
}
}
public MathOperations()
{
firstOperand = 0;
secondOperand = 0;
}
public double Add()
{
double theAddition;
theAddition = (firstOperand + secondOperand);
return theAddition;
}
public double Subtract()
{
double theSubtraction;
theSubtraction = (firstOperand - secondOperand);
return theSubtraction;
}
public double Multiply()
{
double theMultiplication;
theMultiplication = (firstOperand * secondOperand);
return theMultiplication;
}
public double Divide()
{
double theDivision;
theDivision = (float)firstOperand / (float)secondOperand;
return theDivision;
我的最后一个类给我带来了问题。
class MathOperationUI
{
public MathOperationUI()
{
}
public void MathMainModule()
{
int firstOperand;
int secondOperand;
DisplayMenu();
MathOperations usersMathOperations;
firstOperand = PromptForInterger("first");
secondOperand = PromptForInterger("second");
usersMathOperations = new MathOperations ();
}
public void DisplayMenu()
{
Console.WriteLine("\n\tMenu");
Console.WriteLine("****************************");
Console.WriteLine("1: Addition Operation");
Console.WriteLine("2: Subtraction Operation");
Console.WriteLine("3: Multiplication Operation");
Console.WriteLine("4: Division Operation");
Console.WriteLine("5: Exit");
Console.WriteLine("****************************");
}
static int ProcessMenu(int choice)
{
if (choice == 1)
Console.WriteLine("\nWhen adding the number {0} and {1}, the answer is {2}", myNumber.FirstOperand, myNumber.SecondOperand, addition);
else
if (choice == 2)
Console.WriteLine("\nWhen subtracting the number {0} and {1}, the answer is {2}", myNumber.FirstOperand, myNumber.SecondOperand, subtraction);
else
if (choice == 3)
Console.WriteLine("\nWhen multipling the number {0} and {1}, the answer is {2}", myNumber.FirstOperand, myNumber.SecondOperand, multiplication);
else
if (choice == 4)
Console.WriteLine("\nWhen dividing the number {0} and {1}, the answer is {2:F2}", myNumber.FirstOperand, myNumber.SecondOperand, division);
else
if (choice == 5)
return 0;
}
static int PromptForInterger(string position)
{
Console.WriteLine("\n\nEnter the {0} number:\t", position);
return (int.Parse(Console.ReadLine()));
}
最佳答案
myNumber 在当前上下文中不存在,因为它应该存在于 ProcessMenu 函数中,或者它应该存在于全局/实例上下文中。你在正确的轨道上,但你错过了一些要点。在 MathOperationsUI 类中将 MathOperations 对象声明为实例变量,而不是在 MathMainModule 中设置该对象的 FirstOperand 和 SecondOperand 并调用 ProcessMenu。在 Process 菜单中,而不是使用 myNumber,而是使用您声明为实例变量 (MathOperations) 的对象,并调用其适当的函数(加法、乘法等)如果您让它工作,请告诉我。我有一个工作版本,如果你不能得到它,我会发布它。
只能在 main 方法中访问下面的内容,因为这是声明它的地方。如果它在方法中声明,则只能在该方法中访问它,除非将它作为参数传递给另一个方法。
MathOperationUI myNumber = new MathOperationUI();
此外,您不想调用 myNumber.FirstOperand
,因为 myNumber 是 MathOperationUI 类型,但是 FirstOperand 在 MathOperations 中而不是在 ..UI 中。
您的 MathOperationUI 应如下所示。在类 (MathOperationUI) 中但在任何方法之外声明的 MathOperations 对象。这意味着您可以从 MathOperationUI 中的任何方法访问此对象。然后您应该使用来自 PromptForInterger 的用户输入来设置 MathOperations(第一和第二操作数)的属性。最后,您应该调用 ProcessMenu 方法来处理这些输入。
public class MathOperationUI
{
MathOperations usersMathOperations;
public MathOperationUI()
{
usersMathOperations = new MathOperations();
}
public void MathMainModule()
{
DisplayMenu();
usersMathOperations.FirstOperand = PromptForInterger("first");
usersMathOperations.SecondOperand = PromptForInterger("second");
Console.WriteLine("\n\nEnter your coice");
ProcessMenu(int.Parse(Console.ReadLine()));
}
现在您可以从 process 方法访问此对象。并且您可以获得它的第一个和第二个操作数并调用 Add、Multiply 等方法。
Console.WriteLine("\nWhen adding the number {0} and {1}, the answer is {2}", usersMathOperations.FirstOperand, usersMathOperations.SecondOperand, usersMathOperations.Add());
终于可以正常工作了 https://dotnetfiddle.net/5lE63L
希望这能让事情更清楚一些。
关于c# - 从菜单中做出决定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29323766/
我创建了一个库项目,然后构建它,获取 .aar 并解压缩它。获取包含库的 classes.jar 文件,并将其添加到另一个项目中。该项目识别我的文件,我可以从中调用方法和函数。我的问题是我尝试从我的库
这不是现实世界的问题,我只是想了解如何创建 promise 。 我需要了解如何为不返回任何内容的函数做出 promise ,例如 setTimeout。 假设我有: function async(ca
我是 Promise 的新手。我写了两个例子: 第一个是: new RSVP.Promise(function (resolve, reject) { setTimeout(function
我有一个 nodejs (express) 作为服务器端,一个 angular 6 作为客户端。在服务器中我有中间件功能,可以进行 session 检查。如果 session 无效或不存在,我想向客户
我有一个 nodejs (express) 作为服务器端,一个 angular 6 作为客户端。在服务器中我有中间件功能,可以进行 session 检查。如果 session 无效或不存在,我想向客户
我有四个 I/O 操作:A、B、C 和 D。它们中的每一个都应该使用 vertx.executeBlocking 来执行。我应该有以下行为: //PSEUDOCODE waitForExecuteBl
我是一名优秀的程序员,十分优秀!