[Introduction to Java] List of things that got caught by the 14th day of programming

Table of contents Java (Refer to the introductory book at hand.)

  1. Introduction
  2. Expression
  3. Conditional branch, repeat
  4. Array
  5. Method
  6. Package, class ← now here
  7. Object-oriented ..... Continues to 16.

1. Introduction

Data type (int, double, boolean, String ...)

2. Expression

3. Conditional branch, repeat

4. Array

   int[] nums1 = new int[x];
   int[] nums2 = new int[] {x, y, z};
   int[] nums3 = {x, y, z};

5. Method

The scope is only inside the block surrounded by {}.

6. Package and class

Recommended Posts

[Introduction to Java] List of things that got caught by the 14th day of programming
Output of the book "Introduction to Java"
[Java] How to display the day of the week acquired by LocalDate, DateTimeformatter in Japanese
4th day of java learning
Java is the 5th day
[Rails] How to display the list of posts by category
How to derive the last day of the month in Java
Reintroduction to Java for Humanities 0: Understanding the Act of Programming
[Java] Delete the elements of List
Introduction to Functional Programming (Java, Javascript)
[Java] Appropriate introduction by the people of Tempa Java Part 0 (Code rules)
Introduction to java for the first time # 2
[Java] Get the day of the specific day of the week
[day: 5] I summarized the basics of Java
How to sort the List of SelectItem
Introduction of New Generation Java Programming Guide (Java 10)
Introduction of New Generation Java Programming Guide (Java 11)
Introduction of New Generation Java Programming Guide (Java 12)
[Java] Various methods to acquire the value stored in List by iterative processing
Introduction of the new generation Java programming guide (Java language extension project "Amber" edition)
I want to output the day of the week
Things to be aware of when writing Java
Add empty data to the top of the list
The story of learning Java in the first programming
How to get today's day of the week
[Ruby] Code to display the day of the week
[Note] Java: Speed of List processing by purpose
[Java] How to get the authority of the folder
[Introduction to Java] Basics of java arithmetic (for beginners)
Java Welcome to the Swamp of 2D Arrays
[Ruby] I want to make a program that displays today's day of the week!
The part I was addicted to in "Introduction to Ajax in Java Web Applications" of NetBeans
[Java] The problem that uploaded images are not updated due to the influence of cache
Simple statistical analysis of monetary value from the list searched by Mercari Java development
[Java] Introduction to Java
Introduction to java
[Java] How to get the URL of the transition source
From the introduction of devise to the creation of the users table
How to delete / update the list field of OneToMany
How to write Scala from the perspective of Java
Understand the characteristics of Scala in 5 minutes (Introduction to Scala)
[Java] How to get the maximum value of HashMap
Get started with "Introduction to Practical Rust Programming" (Day 3)
Introduction to Java for beginners Basic knowledge of Java language ①
Java: Use Stream to sort the contents of the collection
[Java] Things to be aware of when outputting FizzBuzz