소스 검색

Update README.md

Git-Leon 7 년 전
부모
커밋
e9c5f81659
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    2
      README.md

+ 3
- 2
README.md 파일 보기

@@ -5,8 +5,9 @@
5 5
 # Part 1.1 - Create `Person` Class
6 6
 * Create a `Person` class.
7 7
 	* `Person` constructor should have a parameter of type `String` which sets the `name` instance-variable to the respective value.
8
-	* `Person` should have a `getName()` method which returns the `Person` object's `name` variable.
9
-	* `Person` should have a `setName()` method which sets the `Person` object's `name` variable.
8
+	* The class should declare a `final` field named `id` of type `long`.
9
+	* The class should define a `getName()` method which returns the `Person` object's `name` variable.
10
+	* The class should define a `setName()` method which sets the `Person` object's `name` variable.
10 11
 
11 12
 -
12 13
 # Part 1.0 - Test `Person`