Skip to content

Commit 29441c2

Browse files
committed
Changes
1 parent 6e4df21 commit 29441c2

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

Readme.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -108,17 +108,8 @@ public class Test extends PreTest {
108108
}
109109

110110
}
111-
112-
<<<<<<< HEAD
113-
114-
=======
115-
>>>>>>> 0ea7e8d10b006d0f9c36fe97a28542e0670133a3
116111
```
117112

118-
> NOTE: (Require correction) Always pay attention to new Test() or the new Class(), it will tell you which class
119-
that object is going to create an image of, then no matter which class' object reference it has,
120-
it is only going to have methods of the class mentioned with new keyword.
121-
122113
## *Comparators in Java:*
123114

124115
```java
@@ -288,22 +279,3 @@ public class Test{
288279

289280
}
290281
```
291-
292-
## *Regular Expressions in Java:*
293-
294-
295-
| SN | Regular Expression | Description
296-
| :----: | :---: | :---:
297-
| 1 | `[A-Za-z]` | It matches all the uppercase and lowercase characters
298-
| 2 | `[-+.^:,]` | It matches all the special characters
299-
| 3 | `[.]` | It matches with a character of any kind
300-
301-
302-
## *Lambdas in Java programming:*
303-
304-
*Printing with characters with the help of Java Stream:*
305-
306-
```java
307-
int[] arr = {1,2,3,4,5,6,7,8,9};
308-
Arrays.stream(arr).map(i->i*i).forEach(System.out::println);
309-
```

0 commit comments

Comments
 (0)