摘要:
class program { static void main(string[] args) { calculator c = new calculator(); int r = 0; try { r = c.add("abc","100"); } catch(overflowException 阅读全文
摘要:
操作符里的类型转换 一、隐式类型转换 不丢失精度的转换 子类向父类的转换 装箱 using system; namespace Conversion_Example { class Program { static void Main(string[] args) { Teacher t = new 阅读全文
摘要:
方法的定义、调用与调试 一、构造器 静态构造器 不带参数的构造器 带参数的构造器 static void main(string[] args) { student stu = new student (2,"MR.OKAY");//传参数满足自定义构造器的需求 console.writeline( 阅读全文