美文网首页
051_结构函数的定义和使用 。

051_结构函数的定义和使用 。

作者: 立秋i | 来源:发表于2018-03-31 00:33 被阅读0次

    namespace _051_结构函数的定义和使用 {

        struct CustomerName

        {

            public string firstName;

            public string lastName;

            public string GetName()

            {

                return firstName + " " + lastName;

            }

        }

        struct  Vector3

        {

            public float x;

            public float y;

            public float z;

            public double Distance()

            {

                return Math.Sqrt(x*x + y*y + z*z);

            }

        }

        class Program {

            static void Main(string[] args)

            {

                //CustomerName myName;

                //myName.firstName = "siki";

                //myName.lastName = "Liang";

                ////Console.WriteLine("My name is "+myName.firstName+" "+myName.lastName);

                //Console.WriteLine("My name is "+myName.GetName());

                Vector3 myVector3;

                myVector3.x = 3;

                myVector3.y = 3;

                myVector3.z = 3;

                Console.WriteLine(myVector3.Distance());

                Console.ReadKey();

            }

        }

    }

    相关文章

      网友评论

          本文标题:051_结构函数的定义和使用 。

          本文链接:https://www.haomeiwen.com/subject/uswmcftx.html