-
Notifications
You must be signed in to change notification settings - Fork 0
Generics #7
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
Open
Dolev3
wants to merge
1
commit into
master
Choose a base branch
from
generics
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Generics #7
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <?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="jdk" jdkName="openjdk-24" jdkType="JavaSDK" /> | ||
| <orderEntry type="sourceFolder" forTests="false" /> | ||
| </component> | ||
| </module> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| public class ArrayList <T> { | ||
|
|
||
| private int currentSize; | ||
| private Object[] arrayList; | ||
| private final int DEFAULT_SIZE = 10; | ||
|
|
||
| public ArrayList() { | ||
| this.currentSize = 0; | ||
| this.arrayList = new Object[DEFAULT_SIZE]; | ||
| } | ||
|
|
||
| public void add(T added) { | ||
| if (currentSize == arrayList.length) { | ||
| Object [] arrayList2 = new Object[arrayList.length+ DEFAULT_SIZE]; | ||
| for (int i = 0; i < arrayList.length; i++) { | ||
| arrayList2[i] = arrayList[i]; | ||
| } | ||
| arrayList = arrayList2; | ||
| } | ||
| arrayList[currentSize] = added; | ||
| currentSize++; | ||
| } | ||
|
|
||
| public T get(int place) { | ||
| return (T)arrayList[place]; | ||
| } | ||
|
|
||
| public void set(int place, Object newValue) { | ||
| arrayList[place] = newValue; | ||
| } | ||
|
|
||
| public int getCurrentSize() { | ||
| return currentSize; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| public interface InformationSignal <T> { | ||
|
|
||
| T getLastestValue(); | ||
| void Update(); | ||
| asArray(); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. your code should compile |
||
|
|
||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| public class Main { | ||
|
|
||
| public static void main(String[] args) { | ||
| ArrayList<Integer> list = new ArrayList<>(); | ||
|
|
||
| list.add(1); | ||
|
|
||
|
|
||
| for (int i = 0; i < 3; i++) { | ||
| System.out.println(list.get(i)); | ||
| } | ||
| } | ||
|
|
||
| public <T> void arrayListPrint(ArrayList<T> list) { | ||
| for (int i = 0; i < list.getCurrentSize(); i++) { | ||
| System.out.println(list.get(i).toString()); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,18 @@ | ||
| //TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or | ||
| // click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter. | ||
|
|
||
| public class Main { | ||
|
|
||
| public static void main(String[] args) { | ||
| //TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text | ||
| // to see how IntelliJ IDEA suggests fixing it. | ||
| System.out.printf("Hello and welcome!"); | ||
|
|
||
| for (int i = 1; i <= 5; i++) { | ||
| //TIP Press <shortcut actionId="Debug"/> to start debugging your code. We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint | ||
| // for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>. | ||
| System.out.println("i = " + i); | ||
| } | ||
| ArrayList<Integer> list = new ArrayList<>(10); | ||
|
|
||
| list.add(1); | ||
| list.add("1"); | ||
| list.add(true) | ||
|
|
||
| for (int i = 0; i < 3; i++) { | ||
| System.out.println(list.get(i)); | ||
| } | ||
| } | ||
|
|
||
|
|
||
|
|
||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I approve this, but System.arraycopy is faster and cleaner