1、注释符
作用:
1)、注销
2)、解释
2、C#中3种注释符
1):单选注释//注释的内容
例:
//Console.WriteLine("hello");
2):单行注释/*注释的内容*/
例:
1 /*Console.WriteLine("hello"); 2 Console.ReadKey();*/
3):文档注释///多用来解释类或得方法
例:
1 /// <summary> 2 /// 获取一个最大值 3 /// </summary> 4 /// <param name="t1">第一整型变量</param> 5 /// <param name="t2">第二整型变量</param> 6 /// <returns>返回一个最大的变量</returns> 7 public static int GetMax(int t1, int t2) 8 { 9 return t1 > t2 ? t1 : t2; 10 }
3、VS中的常用快捷键:
Ctrl+K+D:快速对齐代码
注意:代码中出现语法错误无法对齐,比如说少了;。
Ctrl+Z:撤销
Ctrl+S:保存
Ctrl+J:快速弹出智能提示
Home:移动光标到该行文本的最前面
End:移动光标到该行文本的最后面
Shift+Home;选中光标的后面的一段文字
Shift+End:选中光标的前面一段文字
Ctrl+Home:跳转光标到当前文本最顶部
Ctrl+Home:跳转光标到当前文本最底部
Ctrl+K+C:注释所选代码
Ctrl+K+U:取消对所选代码的注释:
F1:转到帮助文档
#region和#endregion:折叠冗余代码
作用:
折叠代码(注意可以折叠注释过的代码,也可以注释没有注释过的代码)
例:
1 #region 2 Console.WriteLine("hello"); 3 Console.WriteLine("hello"); 4 Console.WriteLine("hello"); 5 Console.WriteLine("hello"); 6 Console.WriteLine("hello"); 7 Console.WriteLine(""); 8 #endregion
效果:图片1
可以为折叠添加文字解释
例:
1 #region 折叠 2 Console.WriteLine("hello"); 3 Console.WriteLine("hello"); 4 Console.WriteLine("hello"); 5 Console.WriteLine("hello"); 6 Console.WriteLine("hello"); 7 Console.WriteLine(""); 8 #endregion
效果:图片2
4、
存储变量的语法:
变量类型 变量名;
变量名=值;
声明并且给变量赋值的简写形式:
变量类型 变量名=值;
"="在这并不表示等于的意思,而是赋值的意思,表示把等号右边的值赋值给等号左边的变量。
"=="
在这表示等于的意思,多用于判断两数是否相等。
5、数据类型
1)、整数类型:int 只能存储整数,不能存储小数。
2)、小数类型:double 既能存储整数,也能存储小数,小数点后面的位数 15~16位。
3)、金钱类型:decimal:用来村粗金钱,值后面需要加上一个后缀m或M
例:decimal d = 1000m;
decimal d = 1000M;
4)、字符串类型:string,用来存储多个文本,也可以存储空,字符串类型的值需要被 双引号引来,
这个双引号必须是英文半角状态下的双引号,String和string功能都一样。
5)、字符类型:char,用来存储单个字符,最多、最少只能有一个字符,不能存储空。
字符类型的值需要用 单引号因起来。英文半角状态下的单引号。
6.波浪线
1)、红色波浪线:
代码中出现了语法错误
2)、绿色的波浪线: 也称警告线,说明你的代码语法并没有错误。只不过提示你有可能会出现错误,但是不一定会出现错误。
7、变量的使用规则
如果你要使用变量的话,应该要先声明再赋值再使用。
8、命名规则:
1)、必须以“字母”_或@符号开头,--不要以数字开头
2)、后面可以跟任意“字母”、数字、下划线
注意:
1)、起的变量名不要与C#系统中的关键字重复
2)、在C#中,大小写是敏感的
3)、同一个变量名不允许重复定义(先这么认为,不严谨)
两个命名规范:
1、Camel骆驼命名规范,要求变量名道单词的道字母要小写,其余每个单词的首字母要大写。
多用于给变量命名
2、Pascal命名规范:要求每个单词的首字母都要大写,其余字母小写,多用于给类或方法命名。
8、赋值运算符
=:表示赋值的意思,表示把等号右边的值,赋值给等号左边的变量。
由等号连接的表达式称之为赋值表达式。
注意:每个表达式我们都可以求解除一个定值,对于赋值表达式而言,等号左边的变量的值,就是整个赋值表达式的值。
int number=10;
9、+号的作用
1)、连接
+号两边有一边是字符串的时候
2)、相加
+号两边没有一边是字符串的时候
练习1
题目图片
代码
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string name = "卡卡西"; 14 string address = "火影村"; 15 int age = 30; 16 string email = "[email protected]"; 17 decimal wage = 2000m; 18 Console.WriteLine("我叫"+name+ 19 ",我住在"+address+ 20 ",我今年"+age+ 21 "邮箱是"+email+ 22 "我的工资"+wage 23 ); 24 } 25 26 } 27 }
1
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 int age = 18; 14 age = 81; 15 Console.WriteLine("年龄是"+age+"岁!"); 16 } 17 18 } 19 }
2
10、占位符
使用方法:先挖个坑,再填个坑。
注意:
1、你挖了几个坑,如果你多填没有效果,但语法不会的错。
2、输出顺序:按照挖顺序输出
例(正常):
代码2
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 int n1 = 10; 14 int n2 = 20; 15 int n3 = 30; 16 17 Console.WriteLine("第一个数:{0},第二个数:{1},第三个数:{2}", n1, n2, n3); 18 } 19 20 } 21 }
输出结果:
第一个数:10,第二个数:20,第三个数:30
请按任意键继续. . .
例(特殊):
代码3
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 int n1 = 10; 14 int n2 = 20; 15 int n3 = 30; 16 17 Console.WriteLine("第一个数:{0},第二个数:{2},第三个数:{1}", n1, n2, n3); 18 } 19 20 } 21 }
输出结果:
第一个数:10,第二个数:30,第三个数:20
请按任意键继续. . .
练习2
代码4
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string name = "007"; 14 char gender = ‘男‘; 15 int age = 21; 16 string call = "1314520"; 17 18 Console.WriteLine("我的姓名是{0},性别:{1},年龄:{2},电话:{3}", name , gender, age, call); 19 } 20 21 } 22 }
1
结果:
我的姓名是007,性别:男,年龄:21,电话:1314520
请按任意键继续. . .
代码5
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string address = "安徽省合肥市"; 14 string age = "21"; 15 string name = "FangHaiFeng"; 16 17 Console.WriteLine("我家在{0},今年{1}岁,我的姓名是{2}", address, age, name ); 18 } 19 20 } 21 }
2
结果:
我的姓名是007,性别:男,年龄:21,电话:1314520
请按任意键继续. . .
代码6
6.1
代码6.1
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication2 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 int number1 = 10; 14 int number2 = 5; 15 16 int t = number1; 17 number1 = number2; 18 number2 = t; 19 20 Console.WriteLine("number1:{0},number2:{1}", number1, number2); 21 } 22 23 } 24 }
结果
number1:5,number2:10
请按任意键继续. . .
6.2
代码6.2
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication3 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 int number1 = 10; 14 int number2 = 5; 15 16 number1 = number1 - number2; 17 number2 = number1 + number2; 18 number1 = number2 - number1; 19 20 Console.WriteLine("number1:{0},number2:{1}", number1, number2); 21 } 22 } 23 }
结果:
number1:5,number2:10
请按任意键继续. . .
11、异常
异常是指:语法并没有任何错误,只不过在运行期间,由于某些原因出现问题,使程序不能正常运行。
练习3
代码7.1
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace ConsoleApplication4
8 {
9 class Program
10 {
11 static void Main(string[] args)
12 {
13 string fruit;
14 Console.WriteLine("你喜欢吃什么水果?");
15 fruit = Console.ReadLine();
16 Console.WriteLine("哈哈,这么时间: 2024-11-08 02:50:09