Git Product home page Git Product logo

javaconcepts's Introduction

JavaConcepts

Open Source Love svg3

License

🌏 Introduction

This is a repository consisting of code and important information on most of the Core Java Language Features and Standard Class Libraries, ranging from basic data types to advanced topics.

JavaConcepts Demo


πŸ’» Supported JDK Version

The Java features upto JDK9 have been covered. Preferred JDK versions to use - JDK8 or JDK9. Note: If JDK8 is used, then the exclusive JDK9 features won't work (e.g. private methods inside an interface)


πŸ“š Concepts Covered and Recommended Study Sequence

  • Keywords
  • DataTypes
  • Arguments
  • Arrays
  • Operators
  • ControlStatements
  • Loops
  • StringHandling
  • ClassesAndObjects
  • Methods
  • Interfaces
  • PackagesAndAccessModifiers(1 and 2)
  • Enacapsulation
  • Inheritance
  • Polymorphism
  • Abstraction
  • Composition
  • Annotation
  • TypeWrappers
  • Generics
  • Collection
  • DataFormats
  • Enums
  • ExceptionHandling
  • IOAndSerialization
  • Reflections
  • MultithreadingAndConcurrency
  • Lambdas
  • StreamsAndFilters
  • Runtime
  • SystemAndCompiler
  • Networking
  • Miscellaneous
  • UnitTesting
  • Utilities
  • JavaFX

➿ Example

for loop in Java

void forLoop() {
		System.out.println("Enter the number till which you want the multiplication table of 2: ");
		int number = scanner.nextInt();
		scanner.nextLine();
		for (int i = 1; i <= number; i++) {
			System.out.println("2 times " + i + " is: " + (i * 2));
		}
		System.out.println("***************************************************************");
	}

πŸ”§ Setup & Tools

  • Gradle
  • JDK (Java Development Kit)
  • Eclipse (or any other Java IDE)
  • Set Environment variables
    • JAVA_HOME:Β Pointing to the JDK folder\bin
    • GRADLE_HOME: Pointing to Gradle directory\bin.

πŸƒ Getting Started

$ git clone 
$ cd 
$ import project from Eclipse as a gradle project

πŸ”§ Built With

  • Gradle - Dependency Management

πŸ“ Author

Keep Smiling and Practice Hard

javaconcepts's People

Contributors

sumon-dey avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.