Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Java examples #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Java/Java.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

27 changes: 27 additions & 0 deletions Java/src/com/company/Array.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package com.company;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
* Created by Vova Moskalenko on 04.06.2017.
*/
public class Array {

public static void main(String[] args) {

ArrayList<Character> letters = new ArrayList();
letters.add('B');
System.out.println(letters);
letters.add(0, 'A');
System.out.println(letters);
letters.add('C');
System.out.println(letters);

String[] arr = {"C++", "JavaScript", "Python", "Haskell", "Swift"};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why won't you make an arr a List<String> from the start?

List<String> languages = Arrays.asList(arr);
System.out.print("length: " + languages.size() + " " + "languages[0]:" + " " + languages.get(0) + " "

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you split this line to fit 100 symbols in line, please? Just a code style suggestion.

+ "languages[languages.length-1]:" + " " + languages.get(languages.size() - 1) );
}
}
40 changes: 40 additions & 0 deletions Java/src/com/company/ObjectAccess.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
package com.company;

import java.lang.reflect.Field;

/**
* Created by Vova Moskalenko on 03.06.2017.
*/
public class ObjectAccess {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same as about Object.


private String name = "Marcus";
private String city = "Roma";
private int born = 121;

public ObjectAccess() {}

public String getCity() {return city;}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code style.


public void setCity(String city) {this.city = city;}

public static void main(String[] args) throws Exception {

ObjectAccess person = new ObjectAccess();
System.out.println("Person name is: " + person.name);
System.out.println("Person name is: " + person.getClass().getDeclaredField("name").get(person));

person.name = null;
Field arr[] = person.getClass().getDeclaredFields();
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i].get(person));
}

person.setCity(null);
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i].get(person));
}

//with getter
System.out.println(person.getCity());
}
}
45 changes: 45 additions & 0 deletions Java/src/com/company/Objects.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
package com.company;

public class Objects {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'd better rename this class to ObjectDemo and make your object itself a static class in your demo, or make it separate at all.

//our prewritten fields
private String name;
private String city;
private int born;

public Objects() {}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMHO you should rename Objects to some more appropriate class name, Person, for example.


public Objects(String name, String city, int born) {
this.name = name;
this.city = city;
this.born = born;
}

public void setName(String name) {
this.name = name;
}

public void setCity(String city) {
this.city = city;
}

public void setBorn(int born) {
this.born = born;
}

public static void main(String[] args) {

Objects obj1 = new Objects();
obj1.name = "Marcus";
obj1.city = "Roma";
obj1.born = 121;

//creating the object using constructor
Objects obj2 = new Objects("Marcus", "Roma", 121);

//creating the objects using inner methods
Objects obj3 = new Objects();
obj3.setName("Marcus");
obj3.setCity("Roma");
obj3.setBorn(121);
}
}
53 changes: 53 additions & 0 deletions Java/src/com/company/Serialization.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
package com.company;

import java.io.*;

/**
* Created by Vova Moskalenko on 04.06.2017.
*/
public class Serialization implements java.io.Serializable {

String name = "Marcus";
String city = "Roma";
int born = 121;

public static void main(String[] args) {

Serialization person = new Serialization();
//serialization
try {
FileOutputStream fileOut =

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File input and output are redundant here. You should display exactly serialization and deserialization in this example. For instance, you can use JSON serialization and deserialization as in JavaScript example.

new FileOutputStream("person.txt");
ObjectOutputStream out = new ObjectOutputStream(fileOut);
out.writeObject(person);
out.close();
fileOut.close();
System.out.printf("Serialized data is saved in person.txt");
}catch(IOException i) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code style.

i.printStackTrace();
}

Serialization person2 = null;
//deserialization
try {
FileInputStream fileIn = new FileInputStream("person.txt");
ObjectInputStream in = new ObjectInputStream(fileIn);
person2 = (Serialization) in.readObject();
in.close();
fileIn.close();
}catch(IOException i) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code style.

i.printStackTrace();
return;
}catch(ClassNotFoundException c) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code style.

System.out.println("Serialization class not found");
c.printStackTrace();
return;
}

System.out.println("Deserialized person...");
System.out.println("Name: " + person.name);
System.out.println("City: " + person.city);
System.out.println("Born: " + person.born);

}
}