Home > Java > Java Basics > body text

java error: symbol not found

Release: 2019-11-28 09:57:06
Original
29762 people have browsed it

java error: symbol not found

Problem description

When compiling a piece of java code, it prompts "Error: symbol not found", as follows: (Recommended: java video tutorial )

D:\practicejava>javac PrintArray.java
PrintArray.java:4: 错误: 找不到符号
                System.out.println("Array number:" + Arrays.toString(testArr));
                                                     ^
  符号:   变量 Arrays
  位置: 类 PrintArray
1 个错误
Copy after login

The code is as follows:

public class InsertionSort{
    public static void main(String args[]){
        int testnumber[] = {7,6,4,9,2,1,3,5,8}; //  定义数组
        for(int i=0; i0; j--){   //  将被挑选元素的后一个与被
            if(testnumber[j-1]
Copy after login

The reason why this error is reported is that the Arrays class is used in the code but not referenced in the code. Just introduce it in the code, as follows:

import java.util.Arrays;
Copy after login

Summary

Here is the Arrays class as an example. Similarly, when encountering such problems, first check whether the corresponding class has been introduced.

For more java knowledge, please pay attention to the java basic tutorial column.

The above is the detailed content of java error: symbol not found. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!