Skip to content
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.

Commit

Permalink
Random: I know, I know, this is not how I’m supposed to do it, but I …
Browse files Browse the repository at this point in the history
…can't think of something better.
  • Loading branch information
RobinMalfait committed Mar 25, 2015
1 parent 6c89649 commit 6660a0d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 1ste-jaar/semester-II/OO-Progammeren-II.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,18 @@ z = adres, referentie naar String-Object
```

> String is een object!
>
> String is niet overerfbaar
>
> Strings zijn constanten
```java
public final class String { ... }
```

> **final** classes zijn niet erfbaar
```java
public class MijnString extends String { ... } // DIT GAAT NIET
```

0 comments on commit 6660a0d

Please sign in to comment.