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

相关文章

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

C#如何动态创建Label,及动态label事件

《C#如何动态创建Label,及动态label事件》:本文主要介绍C#如何动态创建Label,及动态label事件,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#如何动态创建Label,及动态label事件第一点:switch中的生成我们的label事件接着,

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

C#基础之委托详解(Delegate)

《C#基础之委托详解(Delegate)》:本文主要介绍C#基础之委托(Delegate),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1. 委托定义2. 委托实例化3. 多播委托(Multicast Delegates)4. 委托的用途事件处理回调函数LINQ

在C#中调用Python代码的两种实现方式

《在C#中调用Python代码的两种实现方式》:本文主要介绍在C#中调用Python代码的两种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#调用python代码的方式1. 使用 Python.NET2. 使用外部进程调用 Python 脚本总结C#调

C#中的 StreamReader/StreamWriter 使用示例详解

《C#中的StreamReader/StreamWriter使用示例详解》在C#开发中,StreamReader和StreamWriter是处理文本文件的核心类,属于System.IO命名空间,本... 目录前言一、什么是 StreamReader 和 StreamWriter?1. 定义2. 特点3. 用

如何使用C#串口通讯实现数据的发送和接收

《如何使用C#串口通讯实现数据的发送和接收》本文详细介绍了如何使用C#实现基于串口通讯的数据发送和接收,通过SerialPort类,我们可以轻松实现串口通讯,并结合事件机制实现数据的传递和处理,感兴趣... 目录1. 概述2. 关键技术点2.1 SerialPort类2.2 异步接收数据2.3 数据解析2.