Where can I find a list of Java functions

It can be very easy to solve, but I cannot find the correct “google search query”, and I have tons of pages and no answer that I am looking for.

Does anyone know or have a list of available java functions as a language?

For instance.

  • Define classes:

    class Employee { } 
  • Define Attributes

     private String name; 
  • Methods:

     public void hello() { } 
  • Class methods

     public static void main(){} 
  • Generics

     private List<String> = .... 
  • Statements
  • Collections
  • ads
  • Inner classes
  • Operators
  • control flow
  • etc..
  • etc..
  • etc..

I look at something more than a cheat sheet than a complete tutorial. I know most of these functions, but sometimes I would like to have something at hand where I can look and say: "Oh yes, this is how the Trojan operator is used in java"

+4
source share
4 answers
+3
source
+3
source

I should mention DZone core java (because it’s not bad, and it is not on the first page of the “java cheat sheet” search :)).

+2
source

Check out this MindProd Compilation. This is similar to the document you are looking for.

+1
source

Source: https://habr.com/ru/post/1302395/


All Articles