Home Web Front-end JS Tutorial What is the difference between java and JavaScript closures

What is the difference between java and JavaScript closures

Jul 22, 2021 pm 02:02 PM
java javascript

The difference is: 1. The closure of javascript is actually a function defined inside a function (because it is a child function, it can read the internal variables of the parent function); 2. The closure of java can convert a The method is stored as a variable. This method has the ability to access free variables of the class.

What is the difference between java and JavaScript closures

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

1. Closure in Javascript:

1. The scope of the variable

Required To understand closures, you must first understand Javascript's special variable scope.

There are two types of scopes of variables: global variables and local variables.

The special thing about Javascript language is that global variables can be read directly inside the function

 var n=999;
 function f1(){
   alert(n);
 }
  f1(); // 999

On the other hand, local variables within the function cannot be read outside the function.

 function f1(){
   var n=999;
 }
  alert(n); // error

There is one thing to note here. When declaring variables inside a function, you must use the var command. If you don't use it, you are actually declaring a global variable!

 function f1(){
   n=999;
 }
  f1();
  alert(n); // 999

2. How to read local variables from the outside

For various reasons, we sometimes need to get local variables within a function. However, as mentioned before, this is not possible under normal circumstances and can only be achieved through workarounds.

That is to define another function inside the function.

  function f1(){
    n=999;
    function f2(){
      alert(n); // 999
    }
 }

Since f2 can read the local variables in f1, then as long as f2 is used as the return value, can't we read its internal variables outside f1!

  function f1(){
    n=999;
    function f2(){
      alert(n);
   }
   return f2;
 }
 var result=f1();
 result(); // 999

3. The concept of closure

The f2 function above is a closure. A closure is actually a function defined inside a function (because it is a child function, it can read the internal variables of the parent function).

In essence, closure is a bridge connecting the inside of a function with the outside of the function.

4. Purpose of closure

1. You can read the variables inside the function.

2. Let these variables (referenced by the closure The value of a variable) is always kept in memory.

  function f1(){
    var n=999;
    nAdd=function(){n+=1}
    function f2(){
      alert(n);
    }
    return f2;
 }
 var result=f1();
 result(); // 999
 nAdd();
 result(); // 1000

In this code, result is actually the closure f2 function. It was run twice, the first time the value was 999, the second time the value was 1000. This proves that the local variable n in function f1 is always stored in memory and is not automatically cleared after f1 is called.

Why is this so? The reason is that f1 is the parent function of f2, and f2 is assigned to a global variable, which causes f2 to always be in memory, and the existence of f2 depends on f1, so f1 is always in memory and will not be deleted after the call is completed. , recycled by the garbage collection mechanism (garbage collection).

Another thing worth noting in this code is the line "nAdd=function(){n =1}". First of all, the var keyword is not used before nAdd, so nAdd is a global variable. rather than local variables. Secondly, the value of nAdd is an anonymous function, and the anonymous function itself is also a closure, so nAdd is equivalent to a setter, which can operate on local variables inside the function outside the function.

5. Points of note when using closures

1. Since closure will cause the variables in the function to be stored in memory, the memory consumption is very large, so Don't abuse closures

2. Closures will change the values ​​of variables inside the parent function outside the parent function.

6. Application scenarios of closures

1. Protect variables within functions. Taking the initial example as an example, i in function a can only be accessed by function b and cannot be accessed through other means, thus protecting the security of i.

2. Maintain a variable in memory. Still as in the previous example, due to closure, i in function a always exists in memory, so every time c() is executed, i will be incremented by 1.

2. Closure in Java

1. The definition of closure in java

Definition: A closure can store a method as a variable. This method has the ability to access free variables of the class.

The Java language itself does not officially support closures, but it does allow simulation of closures (inner class interface). Closures can be implemented using anonymous inner classes.

How to enable this ordinary object to access the free variables of its class? Inner class. The inner class can access all properties and methods of the outer class.

Hiding the specific implementation is one of the functions of the inner class. How to ensure that the closure can be passed to external use while hiding the specific implementation? Let the inner class implement the common interface, and then upcast the inner class object to the interface type.

2. Simple code implementation:

  	public final static String name = "纯牛奶";// 名称


		private static int num = 16;// 数量


		public Milk() {
			System.out.println(name + ":16/每箱");
		}


		/**
		 * 闭包
		 * 
		 * @return 返回一个喝牛奶的动作
		 */
		public Active HaveMeals() {
			return new Active() {
				public void drink() {
					if (num == 0) {
						System.out.println("木有了,都被你丫喝完了.");
						return;
					}
					num--;
					System.out.println("喝掉一瓶牛奶");
				}
			};
		}


		/**
		 * 获取剩余数量
		 */
		public void currentNum() {
			System.out.println(name + "剩余:" + num);
		}
	}


	/**
	 * 通用接口
	 */
	interface Active {
		void drink();
	}  
	
	//闭包的使用
	public class Person {   
		public static void main(String[] args) {  
			//买一箱牛奶  
			Milk m = new Milk(); 
			Active haveMeals = m.HaveMeals();
			//没事喝一瓶  
			haveMeals.drink();  
			//有事喝一瓶  
			haveMeals.drink(); 
			//看看还剩多少?  
			m.currentNum();  
		}   
	}

Summary:

1. Closures are not used much in actual projects , so I can’t comment on his quality.

2. It is recommended to use closures reasonably, not to use them completely, and not to abuse them.

3. Special attention: Closure will cause resources not to be recycled. As in the above example, set m to null in the main method, and use haveMeals to continue calling the drink method will still drink a bottle of milk, indicating that the Milk object has not been released.

[Recommended learning: javascript advanced tutorial]

The above is the detailed content of What is the difference between java and JavaScript closures. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

go by example for loop with range go by example for loop with range Jul 25, 2025 am 03:52 AM

In Go, range is used to iterate over data types and return corresponding values: 1. For slices and arrays, range returns index and element copy; 2. Unwanted indexes or values can be ignored using _; 3. For maps, range returns keys and values, but the iteration order is not fixed; 4. For strings, range returns rune index and characters (rune type), supporting Unicode; 5. For channels, range continues to read values until the channel is closed, and only a single element is returned. Using range can avoid manually managing indexes, making iteratives simpler and safer.

Clean Code Principles Applied to Java Development Clean Code Principles Applied to Java Development Jul 25, 2025 am 03:11 AM

Use meaningful naming: variables such as intdaysSinceModification; methods such as getUserRolesByUsername() to make the code intention clear; 2. Functions should be small and do only one thing: for example, createUser() is split into single responsibility methods such as validateRequest() and mapToUser(); 3. Reduce comments and write self-interpretation code: Use userHasPrivilegedAccess() instead of redundant comments; 4. Handle errors elegantly: do not ignore exceptions, use try-with-resources to automatically manage resources; 5. Follow the "Boy Scout Rules": optimize variables every time you modify

Mastering JavaScript Concurrency Patterns: Web Workers vs. Java Threads Mastering JavaScript Concurrency Patterns: Web Workers vs. Java Threads Jul 25, 2025 am 04:31 AM

There is an essential difference between JavaScript's WebWorkers and JavaThreads in concurrent processing. 1. JavaScript adopts a single-thread model. WebWorkers is an independent thread provided by the browser. It is suitable for performing time-consuming tasks that do not block the UI, but cannot operate the DOM; 2. Java supports real multithreading from the language level, created through the Thread class, suitable for complex concurrent logic and server-side processing; 3. WebWorkers use postMessage() to communicate with the main thread, which is highly secure and isolated; Java threads can share memory, so synchronization issues need to be paid attention to; 4. WebWorkers are more suitable for front-end parallel computing, such as image processing, and

The SOLID Principles Explained for Java Developers The SOLID Principles Explained for Java Developers Jul 26, 2025 am 05:16 AM

The single responsibility principle (SRP) requires a class to be responsible for only one function, such as separating the saving and mail sending in order processing; 2. The opening and closing principle (OCP) requires opening and closing for extensions and closing for modifications, such as adding new graphics without modifying the calculator; 3. The Richter replacement principle (LSP) requires that subclasses can replace the parent class without destroying the program, such as using independent classes to avoid behavior abnormalities caused by square inheritance rectangles; 4. The interface isolation principle (ISP) requires that clients should not rely on unwanted interfaces, such as splitting the multi-function device interface to independent printing, scanning, and fax interfaces; 5. The dependency inversion principle (DIP) requires that high-level modules do not rely on low-level modules, and both rely on abstraction, such as OrderService depends on Data

python run shell command example python run shell command example Jul 26, 2025 am 07:50 AM

Use subprocess.run() to safely execute shell commands and capture output. It is recommended to pass parameters in lists to avoid injection risks; 2. When shell characteristics are required, you can set shell=True, but beware of command injection; 3. Use subprocess.Popen to realize real-time output processing; 4. Set check=True to throw exceptions when the command fails; 5. You can directly call chains to obtain output in a simple scenario; you should give priority to subprocess.run() in daily life to avoid using os.system() or deprecated modules. The above methods override the core usage of executing shell commands in Python.

GraphQL for Java Developers with Spring Boot GraphQL for Java Developers with Spring Boot Jul 25, 2025 am 04:31 AM

GraphQL can be easily integrated in SpringBoot through official support. 1. Use spring-boot-starter-graphql to add dependencies; 2. Define the schema.graphqls file under resources to declare Query and Mutation; 3. Use @Controller to cooperate with @QueryMapping and @MutationMapping to achieve data acquisition; 4. Enable GraphiQL interface testing API; 5. Follow best practices such as input verification, N 1 query prevention, security control, etc., and ultimately implement a flexible and efficient client-driven API.

Using Project Loom for Lightweight Concurrency in Java Using Project Loom for Lightweight Concurrency in Java Jul 26, 2025 am 06:41 AM

ProjectLoomintroducesvirtualthreadstosolveJava’sconcurrencylimitationsbyenablinglightweight,scalablethreading.1.VirtualthreadsareJVM-managed,low-footprintthreadsthatallowmillionsofconcurrentthreadswithminimalOSresources.2.Theysimplifyhigh-concurrency

python remove duplicates from list example python remove duplicates from list example Jul 26, 2025 am 07:53 AM

To remove duplicate elements in Python list, 1. Use set(): It is suitable for situations where elements are immutable and do not care about order. The syntax is list(set(original_list)), but it will disrupt the original order; 2. Use dict.fromkeys(): The recommended method is suitable for Python 3.7, which can maintain the order of the first occurrence of elements. The syntax is list(dict.fromkeys(original_list)), and the code is concise and efficient; 3. Use list deduction and seed collection: It is suitable for scenarios where custom deduplication logic is required. By traversing the list and recording the seen elements with the set, ensuring uniqueness; 4. Handling non-hashable types such as

See all articles