C#基础知识(以宝马,车,车轮为例)

2023-11-05 02:21

本文主要是介绍C#基础知识(以宝马,车,车轮为例),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

派生类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using ClassLibrary1.util;
using ClassLibrary1.util.util2;namespace ClassLibrary1
{//声明代理类public delegate void MyEvent();public class Class1{//enum是C#的关键字,定义枚举类型, Enum 是C#的一个类enum color:int {red=1, blue=2, white=3, gray=4, yellow=5};static void Main(string[] args){//ReadOrWriteFile();//BaseTest();//TestEnum();//ExceptionDeal();//varStringIsNull();// DeleGateTest();Class1 c = new Class1();c.TestEvent();Console.ReadKey();}/// <summary>/// 类,抽象类以及接口/// </summary>private static void varStringIsNull(){//String s = "";//bool b = StringUtil.IsNullOrEmpty(s);//Console.WriteLine(b);//Cars mycar = new Cars();//mycar.Name1 = "BMW";//mycar.Number1 = "888888";//Console.WriteLine("我是{0},牌号为{1}.", mycar.Name1, mycar.Number1);//基类和派生类//Bmw bmw = new Bmw();//bmw.Name1 = "BMW";//bmw.Number1 = "888888";//Console.WriteLine("我是{0},牌号为{1}.", bmw.Name1, bmw.Number1);//bmw.Country = "Germany";//Console.WriteLine("生产地:{0}", bmw.Country);//Console.WriteLine(bmw.getReturnValue());//抽象类 和 接口Bmw bmw = new Bmw();bmw.Name1 = "BMW";bmw.Number1 = "888888";Console.WriteLine("我是{0},牌号为{1}.", bmw.Name1, bmw.Number1);bmw.Country = "Germany";bmw.Count = 4;Console.WriteLine("生产地:{0}", bmw.Country);Console.WriteLine(bmw.getReturnValue());Console.WriteLine("轮子数目:{0}", bmw.getWheelCount());bmw.createCar();bmw.useCar();bmw.destroyCar();}/// <summary>/// 声明一个委托类/// </summary>public delegate void MyDel(String msg);/// <summary>/// 声明调用委托/// </summary>/// <param name="msg"></param>public static void DelMessage(String msg){Console.WriteLine(msg);}/// <summary>/// 委托测试方法/// </summary>public static void DeleGateTest(){MyDel del = DelMessage;del("I am a delegate.");}public event MyEvent DelEvent;//定义事件,绑定代理/// <summary>/// 事件触发方法/// </summary>public virtual void FireEvent(){if (DelEvent != null){DelEvent();}}/// <summary>/// 事件测试方法/// </summary>public  void TestEvent(){DelEvent += new MyEvent(Test2Event);//注册FireEvent();//触发事件
        }/// <summary>/// 事件处理函数/// </summary>public void Test2Event(){Console.WriteLine("事件处理");}/// <summary>/// 捕获异常/// </summary>private static void ExceptionDeal(){int x = 1;int y = 0;try{int a = x / y;}catch (Exception e){Console.WriteLine(e.ToString());}}/// <summary>/// 枚举类型/// </summary>private static void TestEnum(){Console.WriteLine(color.blue);color c = color.red;switch (c){case color.blue: Console.WriteLine(color.blue); break;case color.gray: Console.WriteLine(color.gray); break;default: Console.WriteLine("other"); break;}String[] s = { "a", "b" };foreach (String e in s){Console.WriteLine(e);}}/// <summary>/// 基础测试/// </summary>private static void BaseTest(){//float f = 12.23F;//long  a = 1266666777777777863L;//String str = @"D:\files\temp\a.txt\t";//逐字符串:按原样输出//String str1 = "D:\files\temp\a.txt\t";//String str2 = @"""";//String str3 = """";编译时报错//Console.WriteLine(f);//Console.WriteLine(a);//Console.WriteLine("\v");//Console.WriteLine(str);//Console.WriteLine(str1);//Console.WriteLine(str2);//Console.WriteLine(str3);//String str = "XiaoLi";//Console.WriteLine("My name is {0}, how are you?", str);//字符串格式化, 参数化//字符串比较,可以直接用==号,也可以用Equals//String s1 = "hello,world";//String s2 = "hello,world";//if (s1 == s2)//{//    Console.WriteLine("相等");//}//if (s1.Equals(s2))//{//    Console.WriteLine("相等");//}//else//{//    Console.WriteLine("不相等");//}//值比较, 也可判断是否指向同一对象//String s1 = "hello,world";//String s2 = "hello,wor2ld";//if (s1.CompareTo(s2) <= 0)//{//    Console.WriteLine("指向同一对象");//}//else//{//    Console.WriteLine("不是指向同一对象");//}
}/// <summary>/// 读写文件/// </summary>private static void ReadOrWriteFile(){//@string path = @"e:\MyTest.txt";// Delete the file if it exists.if (File.Exists(path)){File.Delete(path);}//Create the file.//using using (FileStream fs = File.Create(path)){AddText(fs, "This is some text");AddText(fs, "This is some more text,");AddText(fs, "\r\nand this is on a new line");AddText(fs, "\r\n\r\nThe following is a subset of characters:\r\n");for (int i = 1; i < 120; i++){AddText(fs, Convert.ToChar(i).ToString());//Split the output at every 10th character.if (Math.IEEERemainder(Convert.ToDouble(i), 10) == 0){AddText(fs, "\r\n");}}}//Open the stream and read it back.using (FileStream fs = File.OpenRead(path)){byte[] b = new byte[1024];UTF8Encoding temp = new UTF8Encoding(true);while (fs.Read(b, 0, b.Length) > 0){Console.WriteLine(temp.GetString(b));}}}/// <summary>/// 写文件/// </summary>/// <param name="fs"></param>/// <param name="value"></param>private static void AddText(FileStream fs, string value){byte[] info = new UTF8Encoding(true).GetBytes(value);fs.Write(info, 0, info.Length);}}
}
工具类
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 
 5 
 6 namespace ClassLibrary1.util
 7 {
 8     class StringUtil
 9     {
10         public static bool IsNullOrEmpty(String str)
11         {
12             if (str == null || "".Equals(str)) return true;
13             return false;
14         }
15     }
16 }
基类
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using ClassLibrary1.util.util2;
 6 
 7 namespace ClassLibrary1.util.util2
 8 {
 9     class Cars:Wheels
10     {
11         private String Name;
12 
13         public String Name1
14         {
15             get { return Name; }
16             set { Name = value; }
17         }
18         private String Number;
19 
20         public String Number1
21         {
22             get { return Number; }
23             set { Number = value; }
24         }
25         public Cars()
26         {
27             Console.WriteLine("调用基类构造方法:{0}", DateTime.Now);
28         }
29     }
30 }
派生类
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using ClassLibrary1.util.util2;
 6 
 7 namespace ClassLibrary1.util.util2
 8 {
 9     class Bmw:Cars,MyObjects
10     {
11         private String country;
12 
13         public String Country
14         {
15             get { return country; }
16             set { country = value; }
17         }
18         public Bmw()
19         {
20             Console.WriteLine("调用派生类构造方法:{0}", DateTime.Now);
21         }
22         public  String getReturnValue()
23         {
24             return Name1 + Number1;
25         
26         }
27 
28         #region MyObjects 成员
29 
30         public void createCar()
31         {
32             Console.WriteLine("创建车。");
33         }
34 
35         public void useCar()
36         {
37             Console.WriteLine("车使用中...");
38         }
39 
40         public void destroyCar()
41         {
42             Console.WriteLine("销毁车。");
43         }
44 
45         #endregion
46     }
47 }
接口
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 
 6 namespace ClassLibrary1.util.util2
 7 {
 8     interface MyObjects
 9     {
10          void createCar();
11          void useCar();
12          void destroyCar();
13 
14     }
15 }

 

转载于:https://www.cnblogs.com/FCWORLD/archive/2013/02/19/2917453.html

这篇关于C#基础知识(以宝马,车,车轮为例)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/346773

相关文章

使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)

《使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)》在现代软件开发中,处理JSON数据是一项非常常见的任务,无论是从API接口获取数据,还是将数据存储为JSON格式,解析... 目录1. 背景介绍1.1 jsON简介1.2 实际案例2. 准备工作2.1 环境搭建2.1.1 添加

C#读取本地网络配置信息全攻略分享

《C#读取本地网络配置信息全攻略分享》在当今数字化时代,网络已深度融入我们生活与工作的方方面面,对于软件开发而言,掌握本地计算机的网络配置信息显得尤为关键,而在C#编程的世界里,我们又该如何巧妙地读取... 目录一、引言二、C# 读取本地网络配置信息的基础准备2.1 引入关键命名空间2.2 理解核心类与方法

C#实现文件读写到SQLite数据库

《C#实现文件读写到SQLite数据库》这篇文章主要为大家详细介绍了使用C#将文件读写到SQLite数据库的几种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以参考一下... 目录1. 使用 BLOB 存储文件2. 存储文件路径3. 分块存储文件《文件读写到SQLite数据库China编程的方法》博客中,介绍了文

使用C#如何创建人名或其他物体随机分组

《使用C#如何创建人名或其他物体随机分组》文章描述了一个随机分配人员到多个团队的代码示例,包括将人员列表随机化并根据组数分配到不同组,最后按组号排序显示结果... 目录C#创建人名或其他物体随机分组此示例使用以下代码将人员分配到组代码首先将lstPeople ListBox总结C#创建人名或其他物体随机分组

在C#中合并和解析相对路径方式

《在C#中合并和解析相对路径方式》Path类提供了几个用于操作文件路径的静态方法,其中包括Combine方法和GetFullPath方法,Combine方法将两个路径合并在一起,但不会解析包含相对元素... 目录C#合并和解析相对路径System.IO.Path类幸运的是总结C#合并和解析相对路径对于 C

C#中字符串分割的多种方式

《C#中字符串分割的多种方式》在C#编程语言中,字符串处理是日常开发中不可或缺的一部分,字符串分割是处理文本数据时常用的操作,它允许我们将一个长字符串分解成多个子字符串,本文给大家介绍了C#中字符串分... 目录1. 使用 string.Split2. 使用正则表达式 (Regex.Split)3. 使用

C# Task Cancellation使用总结

《C#TaskCancellation使用总结》本文主要介绍了在使用CancellationTokenSource取消任务时的行为,以及如何使用Task的ContinueWith方法来处理任务的延... 目录C# Task Cancellation总结1、调用cancellationTokenSource.

C# dynamic类型使用详解

《C#dynamic类型使用详解》C#中的dynamic类型允许在运行时确定对象的类型和成员,跳过编译时类型检查,适用于处理未知类型的对象或与动态语言互操作,dynamic支持动态成员解析、添加和删... 目录简介dynamic 的定义dynamic 的使用动态类型赋值访问成员动态方法调用dynamic 的

C#如何优雅地取消进程的执行之Cancellation详解

《C#如何优雅地取消进程的执行之Cancellation详解》本文介绍了.NET框架中的取消协作模型,包括CancellationToken的使用、取消请求的发送和接收、以及如何处理取消事件... 目录概述与取消线程相关的类型代码举例操作取消vs对象取消监听并响应取消请求轮询监听通过回调注册进行监听使用Wa

通过C#和RTSPClient实现简易音视频解码功能

《通过C#和RTSPClient实现简易音视频解码功能》在多媒体应用中,实时传输协议(RTSP)用于流媒体服务,特别是音视频监控系统,通过C#和RTSPClient库,可以轻松实现简易的音视... 目录前言正文关键特性解决方案实现步骤示例代码总结最后前言在多媒体应用中,实时传输协议(RTSP)用于流媒体服