search
HomeBackend DevelopmentC#.Net TutorialDetailed explanation of anonymous objects, var and dynamic type dynamic in C#

With the development of C#, the content of the language continues to be enriched, development becomes more convenient and faster, and the sharpness of C# is undoubtedly revealed. The C# language has been a strongly typed language since its birth. This nature has not changed today, and I think it will not change in the future. Since it is a strongly typed language, writing any program must meet the following basic conditions:

1. The variable declaration must indicate its type

2. After the variable type is clear, its type must be specified. The type cannot be changed at Runtime

The code is as follows:

    public  class Student
    {        
    public string Name { get; set; }        
    public int Age { get; set; }        
    public string Like { get; set; }
    }
static void Main(string[] args)
{    int a = 10;    string s = "abc";
    Student student = new Student();    //下面出现编译错误,变量类型在声明后无法再变更
    s = a;
    student = s;
    a = 10.1f;
}

However, in actual development we often face the following common problems:

1. In a larger In a program, only one or a few places (no more than 3 places) need to use a certain type or types (such as Student above), and these types are no longer needed in other places. To declare a Student type separately, the amount of code required may exceed the amount of code when using this type, and the investment-output ratio is not cost-effective.

2. In a program, only some attributes or methods of a certain type of object are required to participate in the operation. In this case, temporarily converting this type of object into an object with some of the properties and methods required by the program can make the program more streamlined.

3. Other situations... I have not noticed yet... Welcome to add...

The above actual development of C# There are relatively good solutions to common problems in JavaScript development, as follows:

//在此处js中需要模拟一个学生对象
student = {"name":"张三","age":20,"like":"LOL"};
//在此处js中需要模拟一个老师对象
teacher = {"name":"李老师","like":"没收学生手机,自己LOL"};
//此处需要将学生student转换成只有name和age的对象
person = {"name":student.name,"age":student.age};

If you are not familiar with the above js syntax, you can go to Baidu to search for "json syntax" and I will tell you that it is very simple (and Very important).

Anonymous object (anonymous type)

Therefore, C# has absorbed the grammatical advantages of JavaScript script language in version 3.0, and has made corresponding upgrades to C# so that it can also This syntax form is supported (C# is still a strongly typed language). The sample code is as follows:

static void Main(string[] args)
{     new {Name="张三",Age=20,Like="LOL"};
}

The above C# code uses the new keyword to tell the compiler to create an object. The object has three attributes: Name, Age, and Like, followed by = and the corresponding value of the attribute. In this way, we avoid "To create an object, you must first have the constraints of the object type", Therefore, during the development process, we no longer need to create separate classes for less used types, the problems mentioned above 1 was resolved.

The object created now does not specify a specific type, so it is called anonymous object.

Var appears

Now to use an anonymous object, you need to use a variable to reference it. Although we do not specify the type of object when creating it, the compiler will help us create a type with related properties and methods during the compilation process. The type name compiled at this time is randomly generated, so the variable type cannot be determined. An example is as follows:

static void Main(string[] args)
{    //XXX为类型声明    //x为引用变量 
     XXX x = new {Name="张三",Age=20,Like="LOL"};
}

Although we don't know the type name generated by the compiler, we can let the compiler infer the variable type based on the compilation results. At this time, the var keyword comes into play:

static void Main(string[] args)
{     var x = new {Name="张三",Age=20,Like="LOL"};
}

The var keyword indicates that the type of Picture:

Notes on using var:

1. var can only declare local variables within methods

2. The type of the variable declared by var is determined after it is assigned, and other types of values ​​cannot be assigned in subsequent programs

3. var x = new object() makes no sense, don’t write such code.............

Now there is With the support of anonymous objects and var inferred types, we can deal with problem 2 mentioned above. The sample code is as follows:

        static void Main(string[] args)
        {            
        var x = new { Name = "张三", Age = 20, Like = "LOL" };            
        var s = new { Name = x.Name, Age = x.Age };  
        }

The above is just an example. If you are familiar with Linq or Entity Framework, the usage corresponding to question 2 will be overwhelming...

Dynamic type dynamic appears

The use of anonymous types is generally limited to the part of the method, which can be understood as: define it as you use it, and disappear after use. What should you do in the following situations?


        static void Main(string[] args)
        {            
        var x = GetObject(); 
        }        
        private static XXX GetObject()
        {            
        return new { Name = "张三", Age = 20, Like = "LOL" };
        }

Returns an anonymous object through the GetObject method, so the method return value type name cannot be determined, and is temporarily replaced by XXX here. In this case the return type is undefined and can be specified using dynamic . As follows:

          Main( x =    { Name = , Age = , Like =

At this time, there will be no syntax errors in the method, and the program can be successfully compiled and executed. So what exactly does dynamic do to make the above program compile successfully?

The role of dynamic:

1. Dynamic represents dynamic type. The meaning of dynamic type is that the type is uncertain during the program writing and compilation stages. At runtime, the properties or attributes of the relevant objects are determined through the reflection mechanism. method. Therefore, syntax checking is not performed during the writing phase.

2. Dynamic can be used to declare fields, attributes, method parameters, and method return values.

3. Dynamic does not support smart prompts because you cannot know what dynamic is when you write code (reflection)

Dynamic declared variables can be understood as object type variables. Therefore, it is correct to assign any type of value to a dynamic variable. However, when using a variable to obtain a property value or call a method (the program must be in the Runtime state at this time), the CLR will check (reflection) whether the called property or method exists. , there is no runtime exception reported.

dynamic is used everywhere in Asp.net Mvc web development. Although it looks complicated, the essence is what is mentioned above.

Explanation:

var and dynamic seem to have similar functions, but they are different:

var dynamic
Declaration fields ×
Local variables
Method parameter type ×
Method return value type ×

The above is the detailed content of Detailed explanation of anonymous objects, var and dynamic type dynamic in C#. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在 Windows 11 中更改网络类型为专用或公共如何在 Windows 11 中更改网络类型为专用或公共Aug 24, 2023 pm 12:37 PM

设置无线网络很常见,但选择或更改网络类型可能会令人困惑,尤其是在您不知道后果的情况下。如果您正在寻找有关如何在Windows11中将网络类型从公共更改为私有或反之亦然的建议,请继续阅读以获取一些有用的信息。Windows11中有哪些不同的网络配置文件?Windows11附带了许多网络配置文件,这些配置文件本质上是可用于配置各种网络连接的设置集。如果您在家中或办公室有多个连接,这将非常有用,因此您不必每次连接到新网络时都进行所有设置。专用和公用网络配置文件是Windows11中的两种常见类型,但通

用Python实现动态数组:从入门到精通用Python实现动态数组:从入门到精通Apr 21, 2023 pm 12:04 PM

Part1聊聊Python序列类型的本质在本博客中,我们来聊聊探讨Python的各种“序列”类,内置的三大常用数据结构——列表类(list)、元组类(tuple)和字符串类(str)的本质。不知道你发现没有,这些类都有一个很明显的共性,都可以用来保存多个数据元素,最主要的功能是:每个类都支持下标(索引)访问该序列的元素,比如使用语法Seq[i]​。其实上面每个类都是使用数组这种简单的数据结构表示。但是熟悉Python的读者可能知道这3种数据结构又有一些不同:比如元组和字符串是不能修改的,列表可以

分享几个.NET开源的AI和LLM相关项目框架分享几个.NET开源的AI和LLM相关项目框架May 06, 2024 pm 04:43 PM

当今人工智能(AI)技术的发展如火如荼,它们在各个领域都展现出了巨大的潜力和影响力。今天大姚给大家分享4个.NET开源的AI模型LLM相关的项目框架,希望能为大家提供一些参考。https://github.com/YSGStudyHards/DotNetGuide/blob/main/docs/DotNet/DotNetProjectPicks.mdSemanticKernelSemanticKernel是一种开源的软件开发工具包(SDK),旨在将大型语言模型(LLM)如OpenAI、Azure

C#的就业前景如何C#的就业前景如何Oct 19, 2023 am 11:02 AM

无论您是初学者还是有经验的专业人士,掌握C#将为您的职业发展铺平道路。

视频矩阵账号怎么做?它的矩阵账号都有哪些类型呢?视频矩阵账号怎么做?它的矩阵账号都有哪些类型呢?Mar 21, 2024 pm 04:57 PM

随着短视频平台的盛行,视频矩阵账号营销已成为一种新兴营销方式。通过在不同平台上创建和管理多个账号,企业和个人能够实现品牌推广、粉丝增长和产品销售等目标。本文将为您探讨如何有效运用视频矩阵账号,并介绍不同类型的视频矩阵账号。一、视频矩阵账号怎么做?要想做好视频矩阵账号,需要遵循以下几个步骤:首先要明确你的视频矩阵账号的目标是什么,是为了品牌传播、粉丝增长还是产品销售。明确目标有助于制定相应的策略。2.选择平台:根据你的目标受众,选择合适的短视频平台。目前主流的短视频平台有抖音、快手、火山小视频等。

Golang 函数返回值的类型是什么?Golang 函数返回值的类型是什么?Apr 13, 2024 pm 05:42 PM

Go函数可以返回多个不同类型的值,返回值类型在函数签名中指定,并通过return语句返回。例如,函数可以返回一个整数和一个字符串:funcgetDetails()(int,string)。实战中,一个计算圆面积的函数可以返回面积和一个可选错误:funccircleArea(radiusfloat64)(float64,error)。注意事项:如果函数签名未指定类型,则返回空值;建议使用显式类型声明的return语句以提高可读性。

Python中类型提示的最佳实践Python中类型提示的最佳实践Apr 23, 2023 am 09:28 AM

使用动态语言一时爽,代码重构火葬场。相信你一定听过这句话,和单元测试一样,虽然写代码的时候花费你少量的时间,但是从长远来看,这是非常值得的。本文分享如何更好的理解和使用Python的类型提示。1、类型提示仅在语法层面有效类型提示(自PEP3107开始引入)用于向变量、参数、函数参数以及它们的返回值、类属性和方法添加类型。Python的变量类型是动态的,可以在运行时修改,为代码添加类型提示,仅在语法层面支持,对代码的运行没有任何影响,Python解释器在运行代码的时候会忽略类型提示。因此类型提

Java框架和.NET框架的性能差异Java框架和.NET框架的性能差异Jun 03, 2024 am 09:19 AM

在高并发请求处理方面,.NETASP.NETCoreWebAPI性能优于JavaSpringMVC,原因包括:AOT提前编译,减少启动时间;更精细的内存管理,由开发人员负责分配和释放对象内存。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)