gpt4 book ai didi

javascript - 将 JavaScript 转换为 C# - 构造函数和数组的困难

转载 作者:太空宇宙 更新时间:2023-11-03 22:31:41 25 4
gpt4 key购买 nike

我正在尝试学习 C# 并且对它完全陌生,如果我的问题非常基础,我很抱歉。当我学习新的语言时,我喜欢使用我现有的一些代码并尝试翻译它(它可能不适用于每个人,但我个人觉得它很有帮助)。我之前用 JavaScript 制作了一个小型机场程序,并希望用 C# 构建相同的程序。

一段 JavaScript:

var Airport = function(){this.planes = []};

Airport.prototype.land = function(plane) {
this.planes.push(plane);
};

Airport.prototype.takeoff = function(plane) {
this.planes.pop();
};

但是,我正在努力用 C# 编写类似的代码,尤其是用一个空的飞机数组构造一个 Airport 对象(我还将有一个单独的 Plane 类)。我做了以下尝试:

using System;
namespace Airport
{
public class Airport
{

public Airport(string planes)
{
string[] planes = { };
}

public void string Land(object plane)
{
planes.Add(plane);
}
}
}

但是我不确定这是构建 Airport 类的正确方法。此外,我收到错误消息“类中的 token 字符串无效”。任何建议将不胜感激?

谢谢!

最佳答案

您的机场在概念上是飞机的容器(您现在使用字符串;我们稍后可以升级到飞机)因此您需要在类级别声明飞机列表的存储

namespace Airport
{
public class Airport
{
//this will hold the planes. I choose Stack<> rather than string[] because arrays are not push/pop'able in c# and youre using your javasscript array like a stack (LIFO)
private Stack<string> _planes = new Stack<string>();

public Airport() //you don't need to pass anything to your airport when you construct it
{
}

//In c# method declarations look like:
//<AccessModifier> <ReturnType> <MethodName>(<ArgumentList>)
//Methods cannot be marked as "void string" as a return type - you must choose either void (if it returns nothing) or string(if it returns a string).
//If it returns something else one day, like a Plane object, it should be marked as returning Plane.
//Your JS Land method returns nothing so I declare void
public void Land(string plane){
_planes.Push(plane);
}

public string Takeoff() //this returns a plane, so we declare the return type as string
{
return _planes.Pop(); //need to handle errors if the planes list is empty btw
}
}
}

JS 和 C# 之间的一个巨大区别是变量的作用域。在 C# 中,声明的变量通常仅在 { curly brackets } 中可用。它是在加上任何子大括号中定义的。变量在声明之前不可用:

//s not available here

if(a==b){
//s not available here

string s = "s";
//s available here

if(c==d){
//s available here

}
//s available here

}
//s not available here

更像是JS中的“let”

稍后将 Plane 建模为它自己的对象会更有意义:

class Plane{
public string Registration { get; set; } //reg can be changed during plane life
public int NumberOfEngines { get; private set; } //read only to the rest of the world, as the engine count doesn't change, but needs to be writable internally to this class so the property can be set

public Plane(int numberOfEngines){ //make numberOfEngines a constructor parameter to force it to be filled in when the plane is constructed. Registration is unknown at time of manufacture
NumberOfEngines = numberOfEngines;
}


}

然后您将 Stack 修改为 Stack。你也会修改你的方法返回类型..

就个人而言,我不会将 Stack 用于飞机,因为它意味着唯一可能起飞的飞机是最近降落的飞机。飞机可以按照随机顺序起飞,与它们降落在机场的顺序无关,所以考虑一个 List<Plane>反而。这样你就可以通过注册找到飞机并将其从机场移除:

public Plane Takeoff(string reg){
for(int i = 0; i < _planes.Count; i++) {
if(_planes[i].Registration == reg){
Plane p = _planes[i];
_planes.RemoveAt(i);
return p;
}
}
}

如果你改变了一些东西,它就是List<Plane即一个包含 Plane 对象的列表,然后你不能将字符串插入其中,因此你的 Land 需要看起来像以下之一:

        public void Land(Plane plane){
_planes.Push(plane);
}

public void Land(string reg, int numberOfEngines){
Plane p = new Plane(numberOfEngines);
p.Registration = reg;
_planes.Push(p);
}

有很多方法可以简化后者,但我已经详细说明了这一点

关于javascript - 将 JavaScript 转换为 C# - 构造函数和数组的困难,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57307688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com