Friday, March 20, 2020

Korean war excusable

Korean war excusable Five years after Korea was partitioned into South and North Korea, the two countries began combating. Led by Kim Il Sung, the North launched a surprise invasion southwards on June 25th 1950. After nearly taking over the entire peninsula, American forces, alongside those of the United Nations, got involved in an attempt to drive the communists back. In due time the Chinese got involved in the conflict as well. This escalation brought forth what is today known as the Korean War. While searching for the grounds of this aggression, it is vital to acknowledge that causes are bound to be numerous in number.Firstly, the fact that China had just become a communist state indeed presents itself as an important aspect of the commencement of the Korean War, as it lead to the United States putting more effort into stopping the spread of communism southward from North Korea. China falling victim to communism in October of 1949 was a major blow to the United States as it stood out as a failure of i ts containment policy, which was meant to stop the spread of communism, and opened up a completely new array of worries concerning the political standpoints of china's many neighboring nations, potential application of domino theory.Original description: "Supply warehouses and dock ...

Wednesday, March 4, 2020

Void Keyword Definition in Java

Void Keyword Definition in Java The void keyword in Java denotes that a method does not have a return type. However, even though a constructor method can never have a return type, it does not have the void keyword in its declaration. Examples The method displayBookData() does not have a return type as shown by the use of the void keyword. Note that the constructor method Book(String, String, String) does not use the void keyword even though it too does not have a return type. public class Book {   Ã‚  private String title;   Ã‚  private String author;   Ã‚  private String publisher;   Ã‚  public Book(String title, String author, String publisher)   Ã‚  {   Ã‚  Ã‚  Ã‚  this.title title;   Ã‚  Ã‚  Ã‚  this.author author;   Ã‚  Ã‚  Ã‚  this.publisher publisher;   Ã‚  }   Ã‚  public void displayBookData()   Ã‚  {   Ã‚  Ã‚  Ã‚  System.out.println(Title: title);   Ã‚  Ã‚  Ã‚  System.out.println(Author: author);   Ã‚  Ã‚  Ã‚  System.out.println(Publisher: publisher);   Ã‚  } }