#I am looking for this concept
1 messages · Page 1 of 1 (latest)
<@&987246399047479336> please have a look, thanks.
While you are waiting for getting help, here are some tips to improve your experience:
If nobody is calling back, that usually means that your question was not well asked and hence nobody feels confident enough answering. Try to use your time to elaborate, provide details, context, more code, examples and maybe some screenshots. With enough info, someone knows the answer for sure.
Don't forget to close your thread using the command </help-thread close:1027500463647621170> when your question has been answered, thanks.
essentially, u can give multiple restrictions to a generic
such as T extends A & B & C
T extends CanJump, CanWalk, CanEat
and then anything that fulfills all those requirements can be given
Can you tell me more about how this part Enum<O> &IMatch will work.
&IMatch means what?
Thanks for the help
IMatch is an interface
If I am correct Enum<O> is a class that has some generic O.
the type both extends Enum and implements IMatch
Enum<E extends Enum<E>> is the base class for every single enum. When you write your own enum class Foo, its actual signature is Foo extends Enum<Foo>
If that Foo also implements the IMatch interface, it will be a suitable candidate for that generic
Understood thanks for the help
hey can any one tell me from where i should i get materials for java
like theory portion etc
You should create a separate post in the forum
But to answer your question
MOOC is a completely free introductory Java course created by the University of Helsinki, it is a great way to learn Java from the ground up.
It consists of two parts, one at beginner, and another at intermediate level. The end of the course is marked by creating your own Asteroids game clone!
Even though the instructions show how to configure and use NetBeans for the course, you can use IntelliJ. To use IntelliJ, simply install the TMC plugin by opening IntelliJ -> File -> Settings -> Plugins and searching for TMC. You will then be able to use IntelliJ to complete MOOC.
Visit MOOC here: https://java-programming.mooc.fi/
(the course is available in both English and Finnish)
About the course - Java Programming