结构体

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 }

 

以上是关于结构体的主要内容,如果未能解决你的问题,请参考以下文章

在C代码中将结构体变量作为参数传递效率忒低

如何优化C ++代码的以下片段 - 卷中的零交叉

20160221.CCPP体系详解(0031天)

Golang PrintfSprintf Fprintf 格式化

Go 系列教程 —— 17. 方法

VSCode自定义代码片段5——HTML元素结构