


1, pass by value
The value is passed by value. The essence of passing reference type by value is to pass the value. When the parameter is a value type, the "value" is the instance itself, so the passed It is an instance copy and will not affect the original instance; when the parameter is a reference type, the "value" is an object reference, so what is passed is a copy of the reference address, which will change the reference point of the original object.
String is a reference type. The effect of passing string by value is the same as the effect of passing value type by value. String is special here.
When calling a method and passing parameters, the method first creates a variable in the stack according to the parameter type, and then assigns the value of the parameter to the variable. Therefore, the value type and string type transfer instance remain unchanged, and the reference type transfer address changes. But if it is passed by reference, the address is passed, and the value of the instance will change.
2, Pass by reference
Ref and out passed by reference, whether it is a value type or a reference type, passing by reference must be modified with the ref or out keyword, ref requires that the parameters before passing must be Initialization is shown first, which is not required for out. That is to say, the parameter using ref must be an actual object and cannot point to null; while the parameter using out can accept an object pointing to null, and then the object must be materialized inside the calling method.
When a value type is passed by reference, the value type will not be boxed.
Pass by reference, what is passed is not the value of the parameter itself, but the address of the parameter. If the parameter is a value type, the address of the value type is passed; if the parameter is a reference type, the address of the object reference is passed. The result of passing a reference type by reference is the same as passing by value.
int i = 100;//Ref需要显示初始化 int j;//out不需要显示初始化 Fun(ref i,out j); void Fun(ref int i,out int j) { j = 100;//out必须完成对象的实体化 }
is as follows:
private void Awake() { SenderTest st = GetComponent<SenderTest>();//实例化类的对象 st.i = 100; int i = 100; string s = "100"; ChangeValue(i,s, st);//值类型,引用类型,按值传递 print("value "+i+s+st.i);//value 100 100 200 ChangeValue(ref i, ref s, ref st);//值类型,引用类型,按引用传递 print("ref "+i + s + st.i);//ref 200 200 200 } void ChangeValue(int i, string s, SenderTest st) { i = 200; s = "200"; st.i = 200; } void ChangeValue(ref int i, ref string s, ref SenderTest st) { i = 200; s = "200"; st.i = 200; }
Related articles:
Writing PHP Extension using C/C
The above is the detailed content of C# reference types: comparison between pass by value and pass by reference. For more information, please follow other related articles on the PHP Chinese website!

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

The core concepts of .NET asynchronous programming, LINQ and EFCore are: 1. Asynchronous programming improves application responsiveness through async and await; 2. LINQ simplifies data query through unified syntax; 3. EFCore simplifies database operations through ORM.

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

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.
