关于C、java、php的函数参数传递特点的分析
一直以来都没有时间写写自己对C中指针的理解,这篇文章虽然和指针关系不大,但却对于一些想要对指针有一些深入理解的人来说确实必须一看的。 想当初,本人特别反感的就是什么“传递”和“引用传递”的对比的问题? 真想说一句,究竟是谁在定义“传递”和“引
一直以来都没有时间写写自己对C中指针的理解,这篇文章虽然和指针关系不大,但却对于一些想要对指针有一些深入理解的人来说确实必须一看的。
想当初,本人特别反感的就是什么“值传递”和“引用传递”的对比的问题?
真想说一句,究竟是谁在定义“值传递”和“引用传递”的意义呢?
不过迫于当今教育中多数人都这么讲,我也没和老师提出来。此处特意贡献出我的理解,希望对新手朋友有些帮助。
首先对于奉劝那些还在纠结 “值传递”和“引用传递” 的区别的朋友赶紧不要纠结了,实在要纠结,我这里给你点一点,传统意义上老师口中的“值传递”和“引用传递”实际指的是 “参数为非指针类型情况传递”和 “参数为指针类型情况传递”...
/*********************************
* 关于参数传递.
* C中,参数传递全部使用值传递的方式.
* 对于 int a , Person p 等类似情况...
* (注意本人不想多费口舌,请注意本人想表达的直接修改的意义)
* 1:直接修改形式参数任何情况都不可能影响到实际参数
* 2:直接修改形式参数的成员也不可能影响到实际参数的成员
* 3:修改形式参数的指针类型成员指向的内容 可以影响到 实际参数对应的指针类型成员指向的内容...
* C中还有一种参数形式叫做引用,希望大家可以在不同地方的对不同的'引用'这个名词自动做不同的理解哈...
* Person & p , int & a
* 1:可以通过修改形式参数的成员修改实际参数的成员
* 2:可以通过直接修改形式参数达到修改实际参数的目的
* (注意第二点是java和php都不可能完全做到的)==>注意,之所以带上个‘完全’,是因为php还勉强能做到一部分...
*
* java
* 对于java,万物皆为引用.
* 1:无法通过改变形式参数来改变实际参数本身
* 2:可以通过改变形式参数的成员来改变实际参数的成员
* 3:总之.形式参数和实际参数实际是引用了同一个对象.
* 想要达到不是引用同一个对象的效果,需要使用clone方法,但需要注意的是clone方法是显示调用的,不是自动调用的.
* 所以clone方法实际与参数的传递永远不会产生关系.
* (对于普通类型数据,无所谓怎么理解了,即使按照引用理解也无妨,反正普通类型变量是没有成员这个东西的
* 所以形式参数根本没得对实际参数产生任何影响.
* )
*
* php 更加类似 java
* 对于php.和java类似.
* 1:首先.对于普通类型数据,一样没有成员这个东西的,所以形式参数还是根本没得对实际参数产生任何影响.
* 2:对于类对象的情况,和java类似,属于默认是属于引用传值.
* 特点和java类似
* 1:无法通过改变形式参数来改变实际参数本身
* 2:可以通过改变形式参数的成员来改变实际参数的成员
* 3:总之.形式参数和实际参数实际是引用了同一个对象.
*
* 区别.php以上特点和java都很类似,但有一点却是java没有的,就是&.
* 首先对比C,php的&和C的作用类似.
* 达到了目的:{
* 1:可以通过修改形式参数的成员修改实际参数的成员
* 2:可以通过直接修改形式参数达到修改实际参数的目的
* }
* 但是,之前说道了php还不完全和c一样...
* 这里说明一下,实际上所谓的'不完全'是实现机制上的不完全,实际使用中其实几乎一样...
*
* 为什么说实现不一样呢?
* C的引用,实际形式参数和实际参数可以理解为就是一个东西.
* 但php却不可以这么理解.
* 可以认为,php在不断维护2者之间的关系,导致2者时刻保持一致.
* 即2者并不是同一块内存,当其中一块要销毁的时候,并不会导致另一块也销毁.
* 也即unset函数的使用仅仅会取消2者的关联.
*
*/

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.

Java Made Simple: A Beginner's Guide to Programming Power Introduction Java is a powerful programming language used in everything from mobile applications to enterprise-level systems. For beginners, Java's syntax is simple and easy to understand, making it an ideal choice for learning programming. Basic Syntax Java uses a class-based object-oriented programming paradigm. Classes are templates that organize related data and behavior together. Here is a simple Java class example: publicclassPerson{privateStringname;privateintage;
