search
HomeJavajavaTutorialJava basic syntax
Java basic syntaxJul 24, 2017 pm 02:12 PM
Basestatement

1.switch: The accepted type is byte short int char (suitable for specific values, but not many values.)
When the condition is established, execute the statement after the case. If no break is encountered after execution; or '}', Then the executable statements will continue to be executed. At this time, the condition of the case will not be judged until break is encountered again; or '}'.
2. Loop statement:

 ① while (conditional expression)
 {
  Loop body (execution statement);
 } ②do

 {
  Loop body (execution statement);
 } while (conditional expression);
 ③ for (initialization expression; loop conditional expression; operation expression after loop)
 {
  Execution statement;
 }

2.1. The difference between while and for about variables:

  Variables have their own scope. For for: If the increment used to control the loop is defined in the for statement, then the variable is only valid within the for statement. After the for statement is executed, the variable is released in memory.

2.2 for and while can be interchanged. If you need to define a loop increment, it is more appropriate to use for.


3. Function: An independent small program with specific functions defined in a class, also called a method.
3.1 Format of function:
                                         int     return return value; The data type of the result after running.
 Parameter type: It is the data type of the formal parameter.
 Formal parameter: It is a variable used to store the actual parameters passed to the function when calling the function.
 Actual parameter: the specific value passed to the formal parameter.
 Return: used to end the function.
 Return value: This value will be returned to the caller. (The keyword void is used when a function returns no specific value.)
3.2. Overloading of functions: In the same class, more than one function with the same name is allowed, as long as their number of parameters or parameter types are different. .
Specificity of overloading: It has nothing to do with the return value type, only the parameter list (it also depends on the parameter order).
Benefits of overloading: easier to read and optimized program design.
  Overload example:
   // Return the sum of two integers
   int add(int x, int y) { return x+y; }
   // Return the sum of three integers
   int add(int x, int y, int z ) { return x+y+z; }
     //Return the sum of two decimals
   double add(double x, double y) { return x+y; }

4. Memory structure:
When the Java program is running, it needs Allocate space in memory. In order to improve computing efficiency, the space is divided into different areas, because each area has a specific way of processing data and memory management.
 Stack memory: used to store local variables. When the data is used up, the space occupied will be automatically released.
Heap memory:

1>. Arrays and objects, and instances created through new are all stored in heap memory.

  2>. Each entity has a memory address value.
  3>.Variables in entities have default initial values.
  4>. The entity is no longer in use and will be recycled by the garbage collector within an uncertain period of time.


5. Array (reference data type): a collection of data of the same type. In fact, an array is a container.
Benefits of arrays: You can automatically number the elements in the array starting from 0, making it easier to operate these elements.
  Format 1:

  Element type [] Array name = new Element type [number of elements or array length];

  eg: int [] arr = new int[5];
 Format 2:
  Element type [] Array name = new element type [] {element, element,....};
  eg: int [] arr = new int[]{1,2,5,3};//Create an entity in the heap memory space and create Each element is assigned a specific value.
  int [] arr = {1,2,5,3};//It can be abbreviated if the data is clear
 The function of new: used to generate a container entity in the heap memory.
 int [] arr: int represents the type of element; [] table array; arr represents the array type. arr is an array variable in the stack memory. What is assigned is actually the address of the array in the heap memory. In addition, arr is stored in the stack memory, and then the container entity address created by new in the heap memory is obtained, which points to the heap memory. array.

The above is the detailed content of Java basic syntax. 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
PHP基础教程:从入门到精通PHP基础教程:从入门到精通Jun 18, 2023 am 09:43 AM

PHP是一种广泛使用的开源服务器端脚本语言,它可以处理Web开发中所有的任务。PHP在网页开发中的应用广泛,尤其是在动态数据处理上表现优异,因此被众多开发者喜爱和使用。在本篇文章中,我们将一步步地讲解PHP基础知识,帮助初学者从入门到精通。一、基本语法PHP是一种解释性语言,其代码类似于HTML、CSS和JavaScript。每个PHP语句都以分号;结束,注

PHP8.0中的multi-catch语句PHP8.0中的multi-catch语句May 14, 2023 pm 01:51 PM

随着Web应用程序的发展,PHP语言在Web开发中得到了广泛应用。而在PHP8.0版本中,一个新的语言特性被引入——multi-catch语句。什么是multi-catch语句?在先前的PHP版本中,对于多个异常类型的处理,开发人员需要写多个catch语句。例如,如下代码块展示了对两种不同异常的处理:try{//Somecodethatmay

学习Go语言变量的基础知识学习Go语言变量的基础知识Mar 22, 2024 pm 09:39 PM

Go语言是一种由Google开发的静态类型、编译型语言,其简洁、高效的特性受到了广泛的开发者关注和喜爱。在学习Go语言的过程中,熟练掌握变量的基础知识是至关重要的一步。本文将通过具体的代码示例来讲解Go语言中变量的定义、赋值、类型推断等基础知识,帮助读者更好地理解和掌握这些知识点。在Go语言中,定义一个变量可以使用关键字var,即var变量名变量类型的格

如何实现MySQL中解锁表的语句?如何实现MySQL中解锁表的语句?Nov 08, 2023 pm 06:28 PM

如何实现MySQL中解锁表的语句?在MySQL中,表锁是一种常用的锁定机制,用于保护数据的完整性和一致性。当一个事务正在对某个表进行读写操作时,其他事务就无法对该表进行修改。这种锁定机制在一定程度上保证了数据的一致性,但也可能导致其他事务的阻塞。因此,如果一个事务因为某种原因无法继续执行,我们需要手动解锁表,以便其他事务可以继续进行操作。MySQL提供了多种

了解Python中的流程控制语句需要掌握几种情况了解Python中的流程控制语句需要掌握几种情况Jan 20, 2024 am 08:06 AM

Python是一种广泛使用的高级编程语言,它具有简单易学、高效灵活的特点,深受开发者的喜爱。在Python中,流程控制语句是实现程序逻辑的重要部分。本文将介绍Python中常用的流程控制语句,并提供代码示例加深理解。在Python中,常见的流程控制语句包括条件语句和循环语句。条件语句根据条件的真假执行不同的代码块,用于判断和选择执行分支。而循环语句则用于重复

PHP基础入门:如何使用echo函数输出文本内容PHP基础入门:如何使用echo函数输出文本内容Jul 30, 2023 pm 05:38 PM

PHP基础入门:如何使用echo函数输出文本内容在PHP编程中,经常需要向网页上输出一些文本内容,这时就可以使用echo函数。本文将介绍如何使用echo函数输出文本内容,并提供一些示例代码。在开始之前,首先要确保你已经安装了PHP,并且配置了运行环境。如果还没有安装PHP,你可以在PHP官方网站(https://www.php.net)上下载最新的稳定版本。

如何实现MySQL中插入数据的语句?如何实现MySQL中插入数据的语句?Nov 08, 2023 am 11:48 AM

如何实现MySQL中插入数据的语句?在使用MySQL数据库时,插入数据是一项非常基础且常见的操作。通过插入数据,可以将新的记录添加到数据库表中,为业务操作提供支持。本文将介绍如何使用MySQL中的INSERT语句来实现数据插入操作,并提供具体的代码示例。MySQL中的INSERT语句用于向数据库表中插入新的记录。其基本语法格式如下:INSERTINTOt

Linux可以零基础学习吗?需要学什么?Linux可以零基础学习吗?需要学什么?Feb 19, 2024 pm 12:57 PM

  想要从事IT行业,但是有不想要学习编程该选择哪门技术合适呢?当然是Linux运维了。Linux是市场上非常受欢迎的技术,应用范围广泛,就业前景好,受到了很多人的喜欢。那么问题来了,Linux运维零基础可以学习吗?  在服务器市场上,Linux系统因为稳定安全、免费开源和高效便捷等优点在市场占有率高达80%,由此可以看得出来Linux应用是非常广泛的。无论是现在还是未来,学习Linux都是非常不错的选择。至于零基础可以学习吗?我的答案是当然可以了。老男孩教育Linux面授班专门针对零基础人员设

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尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

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.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment