JavaTutorialQuestions

所属分类:文章/文档
开发工具:Java
文件大小:532KB
下载次数:0
上传日期:2023-04-11 13:29:20
上 传 者sh-1993
说明:  伦敦帝国理工学院编程II课程教程问题
(Tutorial Questions for the Programming II course at Imperial College London)

文件列表:
LICENSE (11353, 2023-04-11)
diagrams (0, 2023-04-11)
diagrams\0c21_original.odg (14328, 2023-04-11)
diagrams\0c21_original.png (12994, 2023-04-11)
diagrams\0c21_solution.odg (15648, 2023-04-11)
diagrams\0c21_solution.png (15217, 2023-04-11)
diagrams\c822_cyclic.odg (14743, 2023-04-11)
diagrams\c822_cyclic.png (8957, 2023-04-11)
diagrams\c822_dag.odg (13811, 2023-04-11)
diagrams\c822_dag.png (14146, 2023-04-11)
diagrams\c822_infinitetree.odg (26182, 2023-04-11)
diagrams\c822_infinitetree.png (16736, 2023-04-11)
diagrams\c822_treefromdag.odg (14339, 2023-04-11)
diagrams\c822_treefromdag.png (14703, 2023-04-11)
google_checks_edited.xml (16905, 2023-04-11)
helpers (0, 2023-04-11)
helpers\check_name_consistency.py (802, 2023-04-11)
helpers\generate_question_and_solution_stubs.py (707, 2023-04-11)
questions (0, 2023-04-11)
questions\014e.md (833, 2023-04-11)
questions\0378.md (4892, 2023-04-11)
questions\0c21.md (3005, 2023-04-11)
questions\0f05.md (1447, 2023-04-11)
questions\1171.md (7413, 2023-04-11)
questions\11e2.md (2169, 2023-04-11)
questions\1486.md (3248, 2023-04-11)
questions\153d.md (1104, 2023-04-11)
questions\17b1.md (3188, 2023-04-11)
questions\1ae9.md (4499, 2023-04-11)
questions\1aeb.md (8612, 2023-04-11)
questions\236b.md (545, 2023-04-11)
questions\2862.md (1388, 2023-04-11)
questions\290b.md (1610, 2023-04-11)
questions\2d33.md (3022, 2023-04-11)
questions\2ffc.md (2291, 2023-04-11)
questions\30cd.md (1327, 2023-04-11)
questions\336b.md (6397, 2023-04-11)
... ...

# Java Programming: Ally's Tutorial Questions The best way to learn a programming language and the concepts that underlie the language's design is to do *lots* of programming. The aim of these tutorial questions is to give you the opportunity to write, inspect, debug and play with a bunch of reasonably small programs. There are quite a lot of questions, they form part of the examinable material for the course, and thus I strongly encourage you to attempt *all* of them. I also encourage you to explore your own variations of and extensions to the tutorial questions. Think of extra features you could add to some of the programs, and try to add them. ## When are these tutorials? There aren't any. I'm calling them "tutorial questions", but really the questions are for your own self-study. I won't be running tutorial sessions during my part of the course; instead we will do lots of live coding in class. While I might touch on a few of these questions, the vast majority of them won't be discussed. Similarly, your programming tutor or undergraduate teaching assistant might choose to go over some of these questions during PPT sessions, but they are not part of the core material to be covered in PPT groups. So, once again: do try out all the questions **in your own time** before the final test! ## When should I attempt each question? The questions are presented in a reasonably logical order, but this order might not match exactly the order we cover material during the lectures. I suggest that you try out each question as soon as you feel you've learned enough to have a stab at it. I've indicated using links where there are dependencies between questions, and have tagged each question with one or more topic areas. ## Reporting errors For everyone's benefit (including the benefit of future students), please email me ([afd](https://github.com/afd/JavaTutorialQuestions/blob/master/mailto:afd@ic.ac.uk)) if you find errors in these sheets or the sample solutions. ## If you get stuck * Ask me for help after lectures and tutorials * Attend the lab sessions and ask the lab helpers for advice * Send me an email ([afd](https://github.com/afd/JavaTutorialQuestions/blob/master/mailto:afd@ic.ac.uk)) However, before you ask for help do make sure you have spent a significant amount of time scratching your head and thinking about your problem, and looking for solutions in the lecture notes and other available sources. You will likely learn a lot by really trying to figure things out for yourself. If you are still stuck after this then I, and the others involved in the course, will be very happy to help. ## Question labels, dependencies and tags Each question is labelled with a 4-digit hex identifier, e.g. ***e3. Some of the questions depend on other questions; I have indicated wherever this is the case, linking to the prerequisite question. To help you decide how you should prioritise working through the questions, I have attached one or more tags to each question in the list below. The tags are as follows: * Recap: focuses on recapping basic imperative concepts of Java: loops, recursion, variables, arrays and enumerations. * SimpleObjects: covers basic use of objects (with little or no use of interfaces, inheritance, etc.). * Interfaces: covers concepts relating to Java interfaces. * Functional: focuses on functional programming features of Java: streams, lambdas and method references. * Inheritance: covers the design and implementation of subclasses. * AbstractClasses: focuses on using abstract superclasses to share common state and methods among subclasses. * Generics: focuses on building generic containers, and on technical aspects of Java generics. * Exceptions: covers handling unexpected program behaviours using Java's exception mechanisms. * MemoryManagement: explores the stack, heap and garbage collector. * Advanced: Challenging questions that bring together many concepts covered during my part of the course. If you can solve these questions using only the hints provided then you are doing *very* well! You might prefer to work through these questions referring to the sample solutions along the way. ## The questions! You can access the questions via the table below. Solutions are provided for all questions, and code solutions for all questions are available at ```solutions/code```. It is totally up to you when to look at these. I suggest you attempt each question without reference to its solution, and start to peek at the solutions when you get stuck, or when you believe you have made good progress on a question. Much of Object Oriented Programming is not an exact science: there is a lot of room for creativity, and when designing an application one often has to make a choice between multiple imperfect approaches, each with different pros and cons. As a result, you will likely find that some of your answers differ from the sample solutions. When this is the case, think hard about whether the sample solution is better than your solution, whether your solution is better than the sample solution, or whether they are both viable alternatives. I'm very happy to discuss alternative solutions. Also, please get in touch if there are parts of the solutions that you do not understand, of if you spot errors. | Label | Name | Topic tag(s) | Depends on | Solution | |---------------------------|-----------------------------------|-------------------------|-------------|----------| | [***e3](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/***e3.md) | *... 1 4 2 1 4 2 1 ...* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/***e3.md) | | [f79b](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/f79b.md) | *Perfect palindromic cubes* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/f79b.md) | | [4c70](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/4c70.md) | *Lottery numbers* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/4c70.md) | | [014e](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/014e.md) | *Random numbers* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/014e.md) | | [2d33](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/2d33.md) | *Reversed order of input* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/2d33.md) | | [f7c3](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/f7c3.md) | *Pig Latin* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/f7c3.md) | | [67dd](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/67dd.md) | *Word count* | Recap | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/67dd.md) | | [7ec8](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/7ec8.md) | *Battling fighters* | Recap, SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/7ec8.md) | | [8d24](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/8d24.md) | *Lucky battling fighters* | Recap, SimpleObjects | [7ec8](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/7ec8.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/8d24.md) | | [bec2](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/bec2.md) | *Music collection* | Recap, SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/bec2.md) | | [c2b8](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/c2b8.md) | *Irresponsible rectangle* | SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/c2b8.md) | | [d363](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/d363.md) | *Bloated person* | SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/d363.md) | | [7206](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/7206.md) | *Understanding references* | SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/7206.md) | | [937d](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/937d.md) | *Flawed rectangle* | SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/937d.md) | | [bdb4](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/bdb4.md) | *Flawed house* | SimpleObjects | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/bdb4.md) | | [0378](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/0378.md) | *Comparing people* | Interfaces | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/0378.md) | | [6346](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/6346.md) | *Depth of arithmetic expressions* | Interfaces | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/6346.md) | | [e6fd](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/e6fd.md) | *Bit sets* | Interfaces | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/e6fd.md) | | [fe94](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/fe94.md) | *Using Stream.map and Stream.filter* | Functional | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/fe94.md) | | [68e6](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/68e6.md) | *Using Stream.reduce* | Functional | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/68e6.md) | | [0f05](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/0f05.md) | *Coloured points* | Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/0f05.md) | | [dd4c](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/dd4c.md) | *Clocks* | Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/dd4c.md) | | [8f65](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/8f65.md) | *Lucky battling fighters with inheritance* | Inheritance | [8d24](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/8d24.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/8f65.md) | | [845d](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/845d.md) | *Books and dictionaries* | Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/845d.md) | | [e93f](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/e93f.md) | *Apparent and actual types* | Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/e93f.md) | | [d3f5](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/d3f5.md) | *Streams and downcasting* | Functional, Inheritance, Generics | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/d3f5.md) | | [5235](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/5235.md) | *Equality between points* | ObjectEquality | [0f05](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/0f05.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/5235.md) | | [710c](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/710c.md) | *The consequences of overriding `equals`* | ObjectEquality | [5235](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/5235.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/710c.md) | | [aa68](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/aa68.md) | *Symmetric equality testing* | ObjectEqualilty | [5235](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/5235.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/aa68.md) | | [0c21](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/0c21.md) | *Properties* | AbstractClasses | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/0c21.md) | | [236b](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/236b.md) | *Fields for properties* | AbstractClasses | [0c21](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/0c21.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/236b.md) | | [5***1](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/5***1.md) | *Shapes* | AbstractClasses | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/5***1.md) | | [dc38](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/dc38.md) | *Email management system* | AbstractClasses | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/dc38.md) | | [1486](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1486.md) | *String stack* | Interfaces | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/1486.md) | | [8a61](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/8a61.md) | *Int set* | Interfaces | [1486](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1486.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/8a61.md) | | [85bb](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/85bb.md) | *String stack iterators* | AbstractClasses, Interfaces | [1486](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1486.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/85bb.md) | | [a6e7](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/a6e7.md) | *Int set iterators* | AbstractClasses, Interfaces | [8a61](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/8a61.md) [85bb](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/85bb.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/a6e7.md) | | [2ffc](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/2ffc.md) | *Generic stacks* | Generics | [1486](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1486.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/2ffc.md) | | [b401](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/b401.md) | *Generic sets* | Generics | [8a61](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/8a61.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/b401.md) | | [336b](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/336b.md) | *Evolving the Set interface* | Interfaces, Advanced | [b401](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/b401.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/336b.md) | | [17b1](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/17b1.md) | *Default methods* | Interfaces, Advanced | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/17b1.md) | | [96df](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/96df.md) | *Tree nodes* | Generics | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/96df.md) | | [7041](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/7041.md) | *Cloning tree nodes* | Generics | [96df](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/96df.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/7041.md) | | [888a](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/888a.md) | *Generic methods with streams* | Generics, Functional | [68e6](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/68e6.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/888a.md) | | [11e2](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/11e2.md) | *Bounded generic methods with streams* | Generics, Functional | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/11e2.md) | | [c822](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/c822.md) | *Problems cloning tree nodes* | Advanced | [7041](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/7041.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/c822.md) | | [735a](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/735a.md) | *Generic iterators* | Generics | [85bb](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/85bb.md) [a6e7](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/a6e7.md) [b401](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/b401.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/735a.md) | | [876b](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/876b.md) | *Generics and subclasses* | Generics, Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/876b.md) | | [1aeb](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1aeb.md) | *Generic number manipulation* | Generics | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/1aeb.md) | | [b4a5](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/b4a5.md) | *Observing the garbage collector* | MemoryManagement | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/b4a5.md) | | [1ae9](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1ae9.md) | *Reusing immutable value objects* | MemoryManagement | [0f05](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/0f05.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/1ae9.md) | | [290b](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/290b.md) | *Memory leaks in Java* | MemoryManagement, Advanced | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/290b.md) | | [5566](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/5566.md) | *Exception-throwing stacks* | Exceptions | [1486](https://github.com/afd/JavaTutorialQuestions/blob/master/1486.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/5566.md) | | [a22c](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/a22c.md) | *No duplicate email addresses* | Exceptions | [dc38](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/dc38.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/a22c.md) | | [e093](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/e093.md) | *Average of numbers* | Exceptions | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/e093.md) | | [7e2a](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/7e2a.md) | *Stack overflow* | Exceptions | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/7e2a.md) | | [30cd](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/30cd.md) | *Heap exhaustion* | Exceptions | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/30cd.md) | | [74d2](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/74d2.md) | *Exceptions and inheritance (i)* | Exceptions, Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/74d2.md) | | [2862](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/2862.md) | *Exceptions and inheritance (ii)* | Exceptions, Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/2862.md) | | [153d](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/153d.md) | *Exceptions and inheritance (iii)* | Exceptions, Inheritance | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/153d.md) | | [5d30](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/5d30.md) | *Unreliable buffered reader* | Exceptions | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/5d30.md) | | [1171](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/1171.md) | *Cloning graphs* | Advanced | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/1171.md) | | [f763](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/f763.md) | *Simulating garbage collection* | Advanced | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/f763.md) | | [9a9b](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/9a9b.md) | *Transposing tunes* | Advanced | | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/9a9b.md) | | [b33f](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/b33f.md) | *Logging using a functional interface* | Advanced | [888a](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/888a.md) | [Solution](https://github.com/afd/JavaTutorialQuestions/blob/master/solutions/b33f.md) | ## More hex strings When I am gone, if someone wants to add more questions then please consume the remaining [hex strings here](https://github.com/afd/JavaTutorialQuestions/blob/master/questions/hex_strings.md).

近期下载者

相关文件


收藏者