3

For instance, if I’m modeling a book collection and I want to be able to represent sets of books that come together (like an encyclopedia series), the sets may share a lot of properties that individual books would also have (author, publication date, title, etc.). In terms of naming the classes in an OOP context, would it be appropriate for the superclass to be called BookSet if a subclass would be something like IndividualBook, or is another word more appropriate?

3

12

This is a semantical argument, not a technical one. Mathematicians will happily agree that a set can contain one number. Obviously, arrays and lists can have 1 item in them as well. There is no technical limitation here.

However, I suspect you are using the wrong name for the concept you’re trying to describe. If this data applies to both individual books and book sets, you should find a unique name to describe and encapsulate their shared structure.

For example, LibraryItem. Then Book and BookSet can inherit (or implement) LibraryItem, which enables you to reuse the shared commonalities, but without any confusion in regards to a single book needing to be part of a set on its own.

Feel free to pick a different name than LibraryItem, there may be a contextually more appropriate name for your use case.

4

1

Interpreting that in two ways.

Assuming that I understood it, (1) you want to give the base class a categorical name, like BookSet. As this clashes with with ~Set in standard libraries, it should be more like BookCategory. But the convention AbstractBook or BookBase or such is still better. The reader then will not need to digest the context you are specifying.

(2) More likely. If you want a hierarchy, where a work (book) might be a collection of smaller works even of different authors. Or you have a series of books, where in the e-book publishing these works are often small, and packed in one larger epub.
I find Publication more palatable (normally with an ISBN number). However a Story (work) can be collectively in a publication, or in its own publication, or be republished. This would make a distinction between a physical publication and an intellectual story. It however also offers a chance: searching for a story you might find several publications.
I think BookSet as straight inheritance will not work.

0

Object-orientation is about behavior, not data. Having common data is a really bad reason to create a superclass. Also, data should be always hidden in object-oriented designs, so you wouldn’t even be able to use “common data” anyway.

If you have common data, find the common behavior instead, and create an object for that. Try not to use inheritance, define a separate object that does what you want, and include that in the books or wherever you need it.

1

0

It does not … Domain Driven Design makes it very clear

Operation names should come from the UBIQUITOUS LANGUAGE or be
introduced into it. Parameters and results should be domain objects.

The names in software should use the same terminology that is used in the real world domain.

As user949300 notes above, Set is not part of the domain language. Likewise, the attributes on a book, also wouldn’t be called a set.

Therefore, it does not make sense to use the word Set as an umbrella term for both sets and individual items.

Now with respect to what the domain calls such a collection of books or their attributes … that requires additional investigation to get the domain correct.

A place to start is with the English Language and Usage question on what to call a Group of Books

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *