摘要: 代码如下using System;namespace test{ static class Method { public static int DayOfYear (int year, int month, ... 阅读全文
posted @ 2017-12-21 20:17 养鼠的猫 阅读(258) 评论(0) 推荐(1) 编辑
摘要: 泛型是将类型作为参数来传递。泛型的优点:1、使用泛型可以重用代码,保护类型的安全以及提高性能为什么这样说,这里就有个例子 public void Swap(int x, int y){ int temp = x;... 阅读全文
posted @ 2017-12-21 11:17 养鼠的猫 阅读(214) 评论(0) 推荐(0) 编辑