C#调用老男孩类成员程序案例1 源代码的加入(一看就懂)
2021/7/7 20:07:29
本文主要是介绍C#调用老男孩类成员程序案例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 ArrayShuZu.test 8 { 9 //这是定义了一个老男孩类。 10 public class OldBoy 11 { 12 public int Age { get; set; } 13 public string Name { get; set; } 14 public string Education { get; set; } 15 16 // 添加一个老男孩 打印变量的方法。 17 public void PrintVar() 18 { 19 Console.WriteLine("男孩年龄是:" + Age); 20 Console.WriteLine("男孩名字是:" + Name); 21 Console.WriteLine("男孩学历是:" + Education); 22 23 } 24 25 26 27 } 28 }
主函数中的定义。调用老男孩类,类中的属性字段内容,方法。
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Threading.Tasks; 5 // 一 使用外部类,必须要加入这句引用 命名空间,类似导包。否则不能使用。 6 using ArrayShuZu.test; 7 8 #region helloword 9 ////using System; 10 11 //namespace ArrayShuZu 12 //{ 13 // class Program 14 // { 15 // static void Main(string[] args) 16 // { 17 // Console.WriteLine("Hello World!"); 18 // } 19 // } 20 //} 21 #endregion 22 23 #region foreach循环程序测试 24 //using System; 25 //using System.Collections.Generic; 26 27 28 29 //namespace TestForEach 30 //{ 31 // class Program 32 // { 33 // static void Main(string[] args) // main方法,主方法入口 34 // { 35 // //Console.WriteLine("Hello World!"); 36 37 // //test(); 38 39 // //arrayTest(); 这是注释 40 41 42 // //1 主函数里面的方法名字定义. 43 // testStu(); 44 45 // Console.WriteLine(); 46 // } 47 // //teststu方法 48 // static void testStu() 49 // { 50 // ////student列表 51 // List<Student> stulist = new List<Student>(); 52 53 // stulist.Add(new Student() 54 // { 55 // ID = 1, 56 // Age = 15, 57 // Name = "张三" 58 // }); 59 60 // foreach (var item in stulist) 61 // { 62 // Console.WriteLine(item.Name); 63 // } 64 // } 65 66 // static void arrayTest() 67 // { 68 // int[] intlist = new int[] { 1, 2, 3, 4, 5 }; 69 70 // //Console.WriteLine(intlist[0]); 71 // //int[] numlist = { 1, 2, 3, 4, 5,6,7 }; 72 // foreach (var item in intlist) 73 // { 74 // Console.WriteLine(item); 75 // } 76 // } 77 78 79 // static void test() 80 // { 81 // //int num = 3; 82 // int num1 = (int)3.814; 83 // Console.WriteLine(num1); 84 85 // string name = "张三"; 86 // Console.WriteLine(name); 87 // } 88 89 90 // public class Student 91 // { 92 // public int ID { get; set; } 93 // public int Age { get; set; } 94 // public string Name { get; set; } 95 // } 96 97 // } 98 //} 99 #endregion 100 101 #region array 数组程序测试案例1 102 //namespace ArrayShuZu //命名空间 数组 103 //{ 104 // class ArrayTest // 数组测试类 105 // { 106 // static void Main(string[] args) 107 // { 108 // //Console.WriteLine("Hello World!"); 109 110 // // datatype[] arrayName; 这是声明一个数组 。 111 // double[] balance = new double[10]; 112 // Console.WriteLine(balance); 113 114 // } 115 // } 116 //} 117 118 #endregion 119 120 #region if语句 如果语句 实例就是实际的例子,演示说明 121 122 //namespace iftest //命名空间 数组 123 //{ 124 // class ifTest // 数组测试类 125 // { 126 // static void Main(string[] args) 127 // { 128 129 // // 局部变量定义 130 // int a = 10; 131 // // 局部变量定义2 使用 string 关键字来存放字符串类型的数据。字符串类型的数据必须使用双引号括起来,例如 "abc"、"123" 等。 132 // string str = "girl friend,字符串输出,字符串是不好比较大小的。"; 133 134 // // 使用if语句检查布尔条件. 如果a 小于20 输出 135 // if (a < 20) // 如果 a(a的值)小于20. 就执行下面的代码,控制台打印输出括号里面的内容。 136 // { 137 // // 如果条件为真,则输出下面的语句. 相反,如果为假的,则不输出下面的语句。 138 // Console.WriteLine("a 小于20"); 139 // } 140 141 // Console.WriteLine("a 的值是{0}", a);//打印输出a的值,用一个花括号的方式 142 143 // Console.WriteLine(str); 144 // Console.ReadLine(); 145 146 // } 147 // } 148 //} 149 150 151 152 #endregion 153 154 155 #region helloword 156 //using System; 157 158 namespace ArrayShuZu 159 { 160 class Program 161 { 162 static void Main(string[] args) 163 { 164 //1 先new一个女孩类的对象 165 //Girl girl = new Girl(); 166 ////2 调用方法 167 //girl.PrintMsg(); 168 169 // 老男孩类 170 OldBoy oldboy = new OldBoy(); 171 172 //为属性赋值. 调用前给属性赋值。 173 oldboy.Age = 33; 174 oldboy.Name = "chenggong"; 175 oldboy.Education = "本科"; 176 // 调用方法后。不需要控制台打印的语句,照样可以打印出来代码的了。 177 oldboy.PrintVar(); 178 179 180 //Console.WriteLine("Hello World!"); 181 182 183 } 184 } 185 } 186 #endregionView Code
效果:
这篇关于C#调用老男孩类成员程序案例1 源代码的加入(一看就懂)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#
- 2024-01-24Advanced .Net Debugging 1:你必须知道的调试工具