[C#學習筆記9]數(shù)組使用、字符串分割、值類型和引用類型分析和總結
數(shù)組使用:
????聲明數(shù)組、分配空間、賦值、操作
????????????int[] netScore1 = new int[3] { 67, 89, 78 };
? ? ? ? ? ? int[] netScore2 = new int[] { 67, 89, 78 };
? ? ? ? ? ? int[] netScore3 = { 67, 89, 78 };
? ? ? ? ? ? int[] netScore = new int[] { 67, 89, 78, 69, 95 };
? ? ? ? ? ? int sumScore = 0;
? ? ? ? ? ? //使用for循環(huán)遍歷數(shù)組
? ? ? ? ? ? for (int i = 0; i < netScore.Length; i++)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? sumScore += netScore[i];
? ? ? ? ? ? }
????????????//使用foreach循環(huán)遍歷數(shù)組(var 推斷類型)
? ? ? ? ? ? foreach (int score in netScore)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? sumScore += score;
? ? ? ? ? ? }
? ? ? ? ? ? int avgScore = sumScore / netScore.Length;
? ? ? ? ? ? Console.WriteLine($"學員的平均成績:{avgScore}");
字符串的分隔和連接
? ? ? ? ? ??

值類型變量(基本數(shù)據(jù)類型)
? ? ? ? ? ? int wangScore = 90;
? ? ? ? ? ? int zhangScore = wangScore;
? ? ? ? ? ? Console.WriteLine($"修改前二人的成績如下:小王成績:{wangScore} 小張成績:{ zhangScore}");
? ? ? ? ? ? //修改小張的成績
? ? ? ? ? ? zhangScore += 5;
? ? ? ? ? ? Console.WriteLine("修改后二人的成績如下:");
? ? ? ? ? ? Console.WriteLine($"小王成績:{wangScore} 小張成績:{ zhangScore}");

引用類型變量(對象類型)
? ? ? ? ? ? int[] score = { 90, 90 };
? ? ? ? ? ? Console.WriteLine($"修改前二人的成績如下:小王成績:{score[0]} 小張成績:{ score[1]}");
? ? ? ? ? ? //修改小張的成績? ?
? ? ? ? ? ? int[] editedScore = score;//把第一個數(shù)組賦值給第二個數(shù)組
? ? ? ? ? ? editedScore[1] += 5;
? ? ? ? ? ? Console.WriteLine("修改后原有數(shù)組二人的成績如下:");
? ? ? ? ? ? Console.WriteLine($"小王成績:{score[0]} 小張成績:{ score[1]}");
? ? ? ? ? ? Console.WriteLine("-------------------------------------------------");
? ? ? ? ? ? Console.WriteLine("修改后新的數(shù)組二人的成績如下:");
? ? ? ? ? ? Console.WriteLine($"小王成績:{editedScore[0]} 小張成績:{ editedScore[1]}");
字符串作為引用類型變量的測試
? ? ? ? ? ? string teacherName = "老師";
? ? ? ? ? ? string course = "C#";
? ? ? ? ? ? string newTeacher = teacherName;? //string是引用類型沒錯!但是這個類型被.net平臺做了特殊的處理!就是我們使用的效果和值類型一樣
? ? ? ? ? ? newTeacher = "jimes";
? ? ? ? ? ? Console.WriteLine($"TeacherName={teacherName} NewTeacher={newTeacher} Course={course}");