结构体
Posted goldenellipsis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了结构体相关的知识,希望对你有一定的参考价值。
1 using System; 2 3 struct Point 4 { 5 public double x, y; 6 7 public Point(int x, int y) { 8 this.x = x; 9 this.y = y; 10 } 11 12 public double R(){ 13 return Math.Sqrt(x*x+y*y); 14 } 15 } 16 17 class Tes 18 { 19 static void Main() { 20 Point[] points = new Point[100]; 21 22 for (int i = 0; i < 100; i++) 23 points[i] = new Point(i, i*i); 24 } 25 }
以上是关于结构体的主要内容,如果未能解决你的问题,请参考以下文章