JavaSE review diary: method invocation and method overloading
<span>/*</span><span> * 方法的调用和方法重载 </span><span>*/</span><span>/*</span><span> * 什么是方法? * 方法就是一个有名字的代码段; * 方法的调用: * 在方法里调用另外一个方法里面的东西就是方法调用; * 或者可以认为"另外一个方法的名字()"就是方法的调用; * 方法的重载: * 就是在main方法外写了多个方法名相同,但是形参列表不同的方法,在main方法中调用这个方法时括号内写上实参,程序会默认调用实参和调用方法里形参相匹配的方法; </span><span>*/</span><span>//</span><span> 方法形式和方法的类部调用</span><span>/*</span><span>public class JavaSE{ public static void main(String[] args){ JavaSE.Method_1();//方法的调用就是:类名.方法名(实参列表); Method_2(1,2);//main方法调用这个类里面的静态方法也可以这么写; Method_3(5,5); } public static void Method_1(){ System.out.println( "我很帅" ); } public static void Method_2(int a,int b){ int c = a + b; System.out.println( c ); } public static int Method_3(int e,int d){//注意这里static后面跟的是int,是返回值类型,这是方法最后必须写return语句; int f = e + d; System.out.println( f ); return f;//return语句在有返回值类型的时候必须有返回值,不然会报错; } } </span><span>*/</span><span>//</span><span>------------------------------------------------------------------------- </span><span>//</span><span> 方法的重载</span><span>public</span><span>class</span><span> JavaSE{ </span><span>public</span><span>static</span><span>void</span><span> main(String[] args){ Method_4(</span><span>1</span>,<span>1.0</span>);<span>//</span><span>这里1是int型的,1.0是double型的,结果是2.0,结果自动转换为double型</span> Java.sum(<span>2</span>,<span>1</span>);<span>//</span><span>调用外部类的方法必须是:外部类名.方法名(实参列表);</span><span> } </span><span>public</span><span>static</span><span>void</span> Method_4(<span>int</span> a,<span>int</span><span> b){ </span><span>int</span> c = a +<span> b; } </span><span>public</span><span>static</span><span>void</span> Method_4(<span>int</span> a,<span>double</span><span> b){ System.</span><span>out</span>.println( a +<span> b ); } } </span><span>class</span><span> Java{ </span><span>public</span><span>static</span><span>void</span> sum(<span>int</span> a,<span>int</span><span> b){ System.</span><span>out</span>.println( a +<span> b ); } </span><span>public</span><span>static</span><span>void</span> sum(<span>int</span> a,<span>double</span><span> b){ System.</span><span>out</span>.println( a -<span> b ); } }</span>
The above introduces the JavaSE review diary: method invocation and method overloading, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

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



Detailed explanation of the method of converting int type to byte in PHP In PHP, we often need to convert the integer type (int) to the byte (Byte) type, such as when dealing with network data transmission, file processing, or encryption algorithms. This article will introduce in detail how to convert the int type to the byte type and provide specific code examples. 1. The relationship between int type and byte In the computer field, the basic data type int represents an integer, while byte (Byte) is a computer storage unit, usually 8-bit binary data

When using PHP for web application development, you will often need to use a database. When using a database, error messages are very common. Among them, PHPFatalerror: Calltoamemberfunctionfetch() is a relatively common error that occurs when using PDO to query the database. So, what causes this error and how to solve it? This article will explain it in detail for you. 1. Cause of error

Java document interpretation: Usage analysis of the currentTimeMillis() method of the System class, specific code examples are required. In Java programming, the System class is a very important class, which encapsulates some properties and operations related to the system. Among them, the currentTimeMillis method is a very commonly used method in the System class. This article will explain the method in detail and provide code examples. 1. Overview of currentTimeMillis method

In C++, variables of type int can only hold positive or negative integer values; they cannot hold decimal values. There are float and double values available for this purpose. The double data type was created to store decimals up to seven digits after the decimal point. Conversion of an integer to a double data type can be done automatically by the compiler (called an "implicit" conversion), or it can be explicitly requested by the programmer from the compiler (called an "explicit" conversion). In the following sections, we'll cover various conversion methods. Implicit conversions The compiler performs implicit type conversions automatically. To achieve this, two variables are required - one of floating point type and the other of integer type. When we simply assign a floating point value or variable to an integer variable, the compiler takes care of all the other things

The value range of int32 is from -2 to the 31st power to 2 to the 31st power minus 1, that is, -2147483648 to 2147483647. int32 is a signed integer type, which means it can represent positive numbers, negative numbers, and zero. It uses 1 bit to represent the sign bit, and the remaining 31 bits are used to represent the numerical value. Since one bit is used to represent the sign bit, the effective number of int32 bits is 31.

The number of bytes occupied by the int type may vary in different programming languages and different hardware platforms. Detailed introduction: 1. In C language, the int type usually occupies 2 bytes or 4 bytes. In 32-bit systems, the int type occupies 4 bytes, while in 16-bit systems, the int type occupies 2 bytes. In a 64-bit system, the int type may occupy 8 bytes; 2. In Java, the int type usually occupies 4 bytes, while in Python, the int type has no byte limit and can be automatically adjusted, etc.

Conversion method: 1. Use the Itoa() function, the syntax "strconv.Itoa(num)"; 2. Use the FormatInt() function to convert int type data into the specified base and return it in the form of a string, the syntax "strconv .FormatInt(num,10)".

In Java, int is a 32-bit signed data type, and its variables require 32-bit memory; the valid range of the int data type is -2147483648 to 2147483647, and all integers in this range are called integer literals. An integer literal can be assigned to an int variable, such as "int num1 = 21;".
