Skip to content

chetnashah/javawork

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A quick and easy way to make gradle java project(with conventions) from command line is to use gradle init like so:

To make an application :

gradle init --type java-application

To make a library :

gradle init --type java-library

basic :

gradle init --type basic

javap is the java class file disassembler. javap -c includes bytecode. javap -c -verbose is more verbose

JNI code for JDK sits in jdk/src/java.base/share/native/libjava/

e.g. FileInputStream.c which has native methods implemented for FileInputStream.java.

JDK 17 deprecations

Use MaxMetaspaceSize in place of MaxPermSize and MetaspaceSize in place of PermSize in jdk17

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published