C#相关基础知识点总结+基础代码

C#基础知识

同一命名空间下的两个类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace HelloWorld
{class A{private int a;public A(int x) { a = x;  }public void show() { Console.WriteLine(a); }}class Program{static void Main(string[] args){A a = new A(100);a.show();Console.ReadKey();}}
}
基础数据类型
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace HelloWorld
{  class Program{static void Main(string[] args){sbyte sbt = 127;  //8位有符号数,128超出范围,强制转换都不行Console.WriteLine(sbt);short sht = 10000; //16位有符号数int a = 1000000;   //32位有符号数long b = 100000000000; //64位有符号数//无符号整型有: byte ushort uint ulongchar c = 'A';   //字符型,而且无法隐式转换,可以显示转换Console.WriteLine(c);//浮点型有: float(32位) double(64位) decimal(128位)decimal dem = 1e-9M; //不能隐式转换,一般的数默认double, 加后缀M或者强制转换Console.WriteLine(dem);bool flag = true;  //bool型Console.WriteLine(flag);Console.ReadKey();}} 
}
结构体
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace HelloWorld
{  struct A{int a,b;public A(int a=0,int b = 0)//跟C语言不同,有访问级别{this.a = a;this.b = b;}public void show() { Console.WriteLine(a*b);  }}class Program{static void Main(string[] args){A obj =new A(12,13);obj.show();Console.ReadKey();}} 
}
string字符串
string s = "hello world";
Console.WriteLine(s);
强制转换和格式
string s = Console.ReadLine();
double a = double.Parse(s); //强制转换
Console.WriteLine(a*1.7); //默认最多保留14位
s = String.Format("半径={0:f2}\n周长={1:f2}", a, 2 * 3.14* a);
Console.WriteLine(s);
空类型值
int? a;  //表明一个值可以为空类型
a = null;
int b;
if (a.HasValue)b = (int)a; //不能隐式转换
elseb = 1;
Console.WriteLine(b);
字符型
char ch = 'A'; 
char ch = '\101';      // 用8进制数表示ASCII字符,最多3位
char ch = '\x41';      //用2位16进制数表示ASCII字符
char ch = '\x0041';  //用低2位16进制数表示ASCII字符
char ch ='\u0041';   //Unicode字符,必须4位16进制数
char数据常用方法
char c =(char) Console.Read();
Console.WriteLine(c);
if (char.IsDigit(c))Console.WriteLine(c);//char.方法 的格式
string用法以及比较
char[] ch = { 'a', 'a', 'a' };
string s1 = new string(ch);
string s2 = "aa" + "a";
Console.WriteLine(s1==s2);
Console.WriteLine(s1.Equals(s2));
Console.WriteLine(s1.CompareTo(s2));
@的用法
C#字符串可以@开头,并用双引号引起来:√ 
string s3 = @"c:\myFolder\myFile.txt";
若要在一个用 @ 引起来的字符串中包括一个双引号,则应使用两个双引号:例如: "You!" cried the captain.则用: @"""You!"" cried the captain."
常见数值输出格式
 C 或 c
货币
Console.Write("{0:C}", 2.5);   //$2.50
Console.Write("{0:C}", -2.5); //($2.50)D 或 d
十进制数
Console.Write("{0:D5}", 25);   //00025E 或 e
科学型
Console.Write("{0:E}", 250000);   //2.500000E+005F 或 f
固定点
Console.Write("{0:F2}", 25);   //25.00
Console.Write("{0:F0}", 25);   //25G 或 g
常规
Console.Write("{0:G}", 2.5);   //2.5N 或 n
数字
Console.Write("{0:N}", 2500000);   //2,500,000.00X 或 x
十六进制
Console.Write("{0:X}", 250);   //FA
Console.Write("{0:X}", 0xffff);   //FFFF
类型转换
string s = "123";
int a = System.Convert.ToInt32(s);
Console.WriteLine(a);
s = "2016/02/27";
DateTime dt = System.Convert.ToDateTime(s);
Console.WriteLine(dt);
日期类型
DateTime date1 = DateTime.Now;     //获得当前系统日期和时间
DateTime date2 = new DateTime(2014,10,1);    //年月日
Console.WriteLine(date1);   //日期和时间
Console.WriteLine(date2.ToLongDateString());  //长日期 2014年10月1日
Console.WriteLine(date2.ToShortDateString()); //短日期 2014/10/1
Console.WriteLine(date1.Year);   //年
Console.WriteLine(date1.Hour);   //时
Console.WriteLine(date2.ToString("yyyy-MM-dd"));   //格式化 2014-10-01
object类型
装箱:将值类型转化为object类型int i=10;object o1=i;                  //隐式装箱object o2=(object)i;      //显式装箱拆箱:将obj类型转化为一个值类型int i=10;object obj=i;    //装箱int j=(int)obj;   //拆箱
var弱类型
1. var变量必须在定义时初始化:var i=100;    //OKvar s;  s = "abcd";     //NO,必须var s= "abcd"; 
2. 不能给var变量赋与初始化值类型不同的值:var s= "abcd";     s="hello";   //OKs=100;   //NO
3. var要求是局部变量。
4. var定义变量和object不同,它在效率上和使用强类型方式定义变量完全一样。(装箱与拆箱的过程是很损耗性能的)
ref引用
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace HelloWorld
{  class Program{static void Swap(ref int a, ref int b){int t=a;a = b;b = t;}static void Main(string[] args){int a = 3, b = 4;Console.Write("{0},{1}\n",a,b);Swap(ref a,ref b); //要加refConsole.Write("{0},{1}\n",a,b);Console.ReadKey();}} 
}
foreach用法
int odd = 0, even = 0;
int[] arr = { 1, 3, 5, 8, 11 };
foreach(int x in arr)if (x % 2 == 0)even++;elseodd++;
Console.WriteLine("{0},{1}",odd,even);
异常处理
try 
{ //执行的代码(可能有异常)。//一旦发现异常,则立即跳到catch执行。
} 
catch 
{ //处理异常。(若try行代码没有异常,则不执行catch内代码)
} 
finally 
{ //不管是否有异常都会执行finally,包括catch 里面用了return。
}
二维数组和交错数组
int[,] a = new int[2, 3];
for (int i = 0; i < 2; i++)for (int j = 0; j < 3; j++)a[i,j] = i * 3 + j;
for(int i=0; i<2; i++)
{for (int j = 0; j < 3; j++)Console.Write("{0} ",a[i,j]);Console.WriteLine();
}
/* 交错数组 */
int[][] jaggedArr = new int[4][]; //变长
jaggedArr[0] = new int[] { 1, 3, 5, 7, 9, 11 };
jaggedArr[1] = new int[] { 1, 1 };
jaggedArr[2] = new int[] { 2, 4, 6 };
jaggedArr[3] = new int[] { 1, 0, 0, 0, 1 };
ArrayList
ArrayList arrlist1 = new ArrayList();
//新增数据,可以是任何类型
arrlist1.Add(123);
arrlist1.Add("abc");
//修改数据
arrlist1[1] = 100;
//插入数据
arrlist1.Insert(1, "xyz");
//移除数据
//arrlist1.RemoveAt(0);
Console.WriteLine("元素个数=" + arrlist1.Count );
foreach (var x in arrlist1)   Console.WriteLine(x);List<string> list = new List<string>();
list.Add("Tom");
list.Add("Mary");
list.Insert(1, "Mike");
//添加数组
string[ ] ss = { "Jerry", "Jim", "David" };
list.AddRange(ss);
list.Remove("Jerry");
list.RemoveAt(0);     //删除
list.Sort();  //排序,默认升序
list.Reverse();  //反序
if( ! list.Contains("Jerry"))Console.WriteLine("Jerry已经不存在了!");
Console.WriteLine("元素个数=" + list.Count);
foreach (string x in list)  Console.WriteLine(x);
list.Clear();  //清空

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/309842.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[PAT乙级]1038 统计同成绩学生

本题要求读入 N 名学生的成绩&#xff0c;将获得某一给定分数的学生人数输出。 输入格式&#xff1a; 输入在第 1 行给出不超过 10​5​​ 的正整数 N&#xff0c;即学生总人数。随后一行给出 N 名学生的百分制整数成绩&#xff0c;中间以空格分隔。最后一行给出要查询的分数个…

懂「互联网语」的程序员,是个狠人。

借用一下时下很火的「互联网语」做程序员的乐趣是只有进场的人才能获得的红利与程序员相处绝对是令人WOW的用户体验但是别真信那些个程序员说的话哪怕有无数江湖传言为他背书不然你良久建立的心智模型会在瞬间就崩塌毕竟头部程序员和腰腿部程序员之间的壁垒打通不了也许你暂时还…

综合知识点+计算机

综合知识点 多态性有哪些&#xff1f;&#xff08;静态和动态&#xff0c;分别叙述了一下虚函数和函数重载&#xff09; { 分为静态多态性和动态多态性&#xff0c;静态就是在编译时就已经确定了&#xff0c;动态是在程序运行时 才能确定。像函数重载&#xff0c;就是多个函数…

[PAT乙级]1036 跟奥巴马一起编程

美国总统奥巴马不仅呼吁所有人都学习编程&#xff0c;甚至以身作则编写代码&#xff0c;成为美国历史上首位编写计算机代码的总统。2014 年底&#xff0c;为庆祝“计算机科学教育周”正式启动&#xff0c;奥巴马编写了很简单的计算机代码&#xff1a;在屏幕上画一个正方形。现在…

c语言oj合法标识符,YTUOJ-C语言合法标识符

Description输入一个字符串&#xff0c;判断其是否是C的合法标识符。Input输入数据包含多个测试实例&#xff0c;数据的第一行是一个整数n,表示测试实例的个数&#xff0c;然后是n行输入数据&#xff0c;每行是一个长度不超过50的字符串。Output对于每组输入数据&#xff0c;输…

[C++11]initializer_lisr模板类的使用

代码如下: #include <iostream> using namespace std;void func(initializer_list<int> ls) {auto it ls.begin();for (; it ! ls.end(); it){cout << *it << " ";}cout << endl; }int main() {func({ 1,2,5,12,23 });return 0; }测…

map的专项知识点总结

map的专项知识点总结 标准库map类型是一种以键-值(key-value)存储的数据类型。以下分别从以下的几个方面总结&#xff1a; &#xff08;1&#xff09;.map对象的定义和初始化 &#xff08;2&#xff09;.map对象的基本操作&#xff0c;主要包括添加元素&#xff0c;遍历等 m…

linux tcp 创建,Linux下tcp服务器创建的步骤

创建一个socket&#xff0c;使用函数socket()socket(套接字)实质上提供了进程通信的端点&#xff0c;进程通信之前&#xff0c;双方首先必须建立各自的一个端点&#xff0c;否则没有办法通信。通过socket将IP地址和端口绑定之后&#xff0c;客户端就可以和服务器通信了#include…

基于 abp vNext 和 .NET Core 开发博客项目 - 数据访问和代码优先

上一篇文章完善了项目中的代码&#xff0c;接入了Swagger。本篇主要使用Entity Framework Core完成对数据库的访问&#xff0c;以及使用Code-First的方式进行数据迁移&#xff0c;自动创建表结构。数据访问在.EntityFrameworkCore项目中添加我们的数据访问上下文对象MeowvBlogD…

[C++11]使用using和typedef给模板定义别名

using语法和typedef一样&#xff0c;并不会创建出新的类型&#xff0c;它们只是给某些类型定义了新的别名。using相较于typedef的优势在于定义函数指针别名时看起来更加直观&#xff0c;并且可以给模板定义别名。 使用typedef给模板定义别名: 无法直接使用typedef给模板定义别…

石家庄学院c语言试题,谁会高级语言程序设计?要求用C语言,帮帮我把,愁死我啦...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼好的&#xff0c;题目如下&#xff0c;帮我做做吧1. 图形时钟功能要求&#xff1a;在屏幕上显示一个图形时钟(用程序绘制一个与时钟样式相似即可)&#xff0c;时间与系统时间一致&#xff0c;且要随着时间的走动准确的走动。2. 万年…

Shaolin HDU - 4585(map模板题)

题意&#xff1a; 少林寺有n1个和尚&#xff0c;他们都有一个独有的编号和战斗力值&#xff0c;当一个年轻人通过所有考试并被宣布为少林的新僧人时&#xff0c;将会有一场战斗&#xff0c;作为欢迎的一部分。新和尚必须与一位战斗等级最接近他的战斗等级的老和尚战斗。如果有…

Azure Show|第一期 开播啦!嘉宾梁迪李卓恒李佳芮

欢迎来到Azure Show!Azure ShowAzure Show 是由微软最有价值专家、微软技术社区区域总监卢建晖和微软开发者关系PM朱兴亮共同发起的一个关于微软Azure、开源技术、还有技术社区相关的线上节目。每期节目由MVP面对面、开源故事、从零开始以及Azure101组成&#xff0c;邀请微软技…

c语言coin函数库,Coin Test | C/C++程序员之家

Coin Test时间限制&#xff1a;3000 ms | 内存限制&#xff1a;65535 KB难度&#xff1a;1描述As is known to all,if you throw a coin up and let it droped on the desk there are usually three results. Yes,just believe what I say ~it can be the right side or the …

[PAT乙级]1033 旧键盘打字(getline()读入)

旧键盘上坏了几个键&#xff0c;于是在敲一段文字的时候&#xff0c;对应的字符就不会出现。现在给出应该输入的一段文字、以及坏掉的那些键&#xff0c;打出的结果文字会是怎样&#xff1f; 输入格式&#xff1a; 输入在 2 行中分别给出坏掉的那些键、以及应该输入的文字。其…

基于 abp vNext 和 .NET Core 开发博客项目 - 完善与美化,Swagger登场

上一篇文章(https://www.cnblogs.com/meowv/p/12896898.html)已经成功将博客项目跑起来了&#xff0c;那么本篇主要是将之前遗留的问题解决&#xff0c;现在的代码看起来可能还是比较混乱&#xff0c;有大量与之无关的代码存在里面&#xff0c;对于强迫症患者来说真的是零容忍。…

string函数知识点总结

标准c中string类函数介绍 之所以抛弃char*的字符串而选用C标准程序库中的string类&#xff0c;是因为他和前者比较起来&#xff0c;不必 担心内存是否足够、字符串长度等等&#xff0c;而且作为一个类出现&#xff0c;他集成的操作函数足以完成我们大多数情况下(甚至是100%)的需…

[C++11]基于范围的for循环

C11提供了一种新型的for循环形式 - 基于范围的for循环 语法: for (declaration : expression) {//循环体 }在上面的语法格式中&#xff0c;declaration表示遍历声明&#xff0c;在遍历过程中&#xff0c;当前被遍历到的元素会被存储到声明的变量中&#xff0c;expression是要…

c语言画笔的使用方法,新手必看:Photoshop笔刷画笔工具基本使用教程

本文为Photoshop初学者提供基本的Photoshop笔刷画笔工具的基本使用方法,这可以说是Photoshop最重要的功能。希望初学PS朋友认真学习&#xff0c;有所帮助&#xff01;工具/原料Photoshop CC 2014或者其他较新版本的psPhotoshop笔刷画笔工具介绍&#xff1a;1、画笔工具在哪里呢…

基于 abp vNext 和 .NET Core 开发博客项目 - 给项目瘦身,让它跑起来

上一篇文章(https://www.cnblogs.com/meowv/p/12896177.html)已经成功创建了博客项目&#xff0c;但是abp默认给我们引用了许多项目中用不到的组件。本篇文章将给项目进行瘦身&#xff0c;删掉对我们来说暂时用不到的组件。讲解各个模块之间的关系&#xff0c;写一个Hello Worl…