我想制作一个存储phones
的程序,如:
Brand: Samsung
Type: Galaxy S3
Price: 199.95
Ammount: 45
-------------------
Brand: LG
Type: Cookie
Price: 65.00
Ammount: 13
-------------------
etc, etc, etc,
这样做的最佳做法是什么?
在php
我应该做的:
$phones = array(
array(
array("Brand" => "Samsung"),
array("Type" => "Galaxy S3"),
array("Price" => 199.95),
array("Ammount" => 45)
),
array(
array("Brand" => "LG"),
array("Type" => "Cookie"),
array("Price" => 65.00),
array("Ammount" => 13)
)
)
这是否也可以在C#
中使用,因为我不知道列表中有多少手机,而且数据类型不同:string
,decimal
,{{1} }。
我不知道该使用什么,因为你有int
,lists
,structs
,objects
等等。
提前致谢!
答案 0 :(得分:9)
使用类似的类
public class Phone
{
public string Brand { get; set; }
public string Type { get; set; }
public decimal Price { get; set; }
public int Amount { get; set; }
}
然后您可以使用collection initializer语法填充List<Phone>
:
var phones = new List<Phone> {
new Phone{
Brand = "Samsung", Type ="Galaxy S3", Price=199.95m, Amount=45
},
new Phone{
Brand = "LG", Type ="Cookie", Price=65.00m, Amount=13
} // etc..
};
...或在List.Add
的循环中。
填写完列表后,您可以将其循环播放,一次只能获得一部手机
例如:
foreach(Phone p in phones)
Console.WriteLine("Brand:{0}, Type:{1} Price:{2} Amount:{3}", p.Brand,p.Type,p.Price,p.Amount);
或者您可以使用列表索引器访问给定索引处的特定电话:
Phone firstPhone = phones[0]; // note that you get an exception if the list is empty
或通过LINQ扩展方法:
Phone firstPhone = phones.First();
Phone lastPhone = phones.Last();
// get total-price of all phones:
decimal totalPrice = phones.Sum(p => p.Price);
// get average-price of all phones:
decimal averagePrice = phones.Average(p => p.Price);
答案 1 :(得分:3)
最佳解决方案是创建Phone object
之类的:
public class Phone {
public string Brand { get; set; }
public string Type { get; set; }
public decimal Price { get; set; }
public decimal Ammount { get; set; }
}
并将此对象存储在列表中(例如):
List<Phone> phones = new List<Phone> ();
phones.Add(new Phone { Brand = "Samsung", Type = "Galaxy S3", Price = 199.95, Amount = 45 });
etc
答案 2 :(得分:2)
你会有一个模型类,比如
class Phone
{
public string Brand {get; set;}
public string Type {get; set;}
public decimal Price {get; set;}
public int Amount {get; set;}
}
然后要创建手机列表,您可以使用这样的代码
var phones = new List<Phone>
{
new Phone{Brand = "Samsung", Type = "Galaxy S3", Price = 199.95, Amount = 45},
new Phone{Brand = "LG", Type = "Cookie", Price = 65.00, Amount = 13},
}