你好我有一个小问题。
我使用的是时间结构,如果我将秒数设置为 100,它必须给我一个输出(在控制台中):1 分 40 秒。
struct Time
{
Time Timer = new Time(100);
public Timer(int seconds);
public Timer(int minutes, int seconds);
public Timer(int hours, int minutes, int seconds);
}
我有这个,但它给了我一个错误:“方法必须有一个返回类型”“AudioDevices.Tracks.Track.Time 不包含带有 1 个参数的构造函数”
完整代码:
public class Track
{
int id;
string name;
string artist;
string albumSource;
enum Category
{
Ambient, Blues, Country, Disco, Electro, Hardcore, HardRock,
HeavyMetal, Hiphop, Jazz, Jumpstyle, Klassiek, Latin, Other,
Pop, Punk, Reggae, Rock, Soul, Trance, Techno,
}
struct Time
{
Time Timer = new Time(100);
public Timer(int seconds);
public Timer(int minutes, int seconds);
public Timer(int hours, int minutes, int seconds);
}
}
}
如果可以,你能解释一下你是怎么做到的吗?