Courses
Log in
Start Learning AI
Courses
Log in
Start Learning AI
Q&A Discussions
Search
Search
Ask a question
Ask a question
Extends
java
0 Votes
3 Answers
23rd Jan 2022, 1:10 PM
Mohammad
Extends Exception or RuntimeException
exceptions
java
7 Votes
1 Answer
30th Nov 2018, 2:51 PM
Al Toe
[SOLVED] Java extends problem
extend
java
3 Votes
4 Answers
2nd May 2020, 6:28 PM
KingDaniel2004
How any class extends Object.
java
3 Votes
7 Answers
6th May 2017, 9:19 PM
Ramu Vurimi
How to use EXTENDS Keyword in Java?
java
java_programming
5 Votes
12 Answers
2nd Apr 2021, 11:18 AM
Lisa John
A java class can extends itself?
classes
extends
java
-4 Votes
2 Answers
25th Jul 2018, 7:44 PM
Sneher Ador
Guys, help me with extends and implements
difference
extends
implements
java
1 Vote
3 Answers
21st Sep 2018, 8:10 AM
ITknowledge
What does the extends key word mean in java?
java
progress
sololearn
7 Votes
2 Answers
6th Nov 2016, 3:21 AM
David Kariuki
can interface extends to more than one interface
interfaces
java
1 Vote
2 Answers
26th Jul 2016, 7:49 AM
Nishant Jaiswal
What is the difference between implement Runnable interface and extends the Thread?
java
runnable
thread
3 Votes
7 Answers
26th Aug 2019, 7:40 AM
Shahid Iqbal
Can i extends two activity in java and please read description.
classes
0 Votes
3 Answers
17th Oct 2019, 11:04 AM
Devanshu Pathsariya
What is difference between extends Thread and implemenst Runnable in Java
java
2 Votes
1 Answer
7th Apr 2017, 3:28 PM
kz kz
What does (extends) keyword do in Java
extends
1 Vote
2 Answers
11th Oct 2018, 8:18 AM
Yusuf Miftahudeen
I do not understand the differences between inheritance, extends and interfaces in JAVA
extends
inheritance
interfaces
java
1 Vote
4 Answers
18th Aug 2017, 2:21 AM
Javier I. Rivera R.
Inheritance in java
extends
inheritance
5 Votes
4 Answers
17th Jul 2019, 9:14 AM
D_Stark
what is the diffetence when we say an interface extends another interface and a class implements an interface?
java
1 Vote
11 Answers
19th Nov 2019, 7:13 PM
Abdul Wahab
[Solved] Hello, can you tell me what is the difference between '' extends'' and "implements"in Java?
extends
implements
java
11 Votes
20 Answers
25th Aug 2019, 12:01 PM
Mantafounis Panagiotis
CAN WE USE EXTENDS AND Implements on same class at a time in Java
java
1 Vote
1 Answer
2nd Jan 2023, 1:54 PM
Madipadige Manish Kumar
import java.awt.DisplayMode; class VariableType { int amount=20000; int pin=472442; } public class DatyTypeNK extends Variable
code
java
0 Votes
4 Answers
26th Mar 2017, 10:23 AM
Ankit Khare
class Parent { public static void show(){ System.out.println("parent class"); } } class Child extends Parent {
java
0 Votes
2 Answers
25th Apr 2018, 5:11 PM
pankaj
Why does this code only work if i invoke extends and create the subclass in main?
extends
java
polymorphism
1 Vote
4 Answers
16th Jun 2017, 4:02 PM
Timothy Ryan
(JAVA) How to complete this code?
extends
java
0 Votes
5 Answers
10th May 2020, 6:57 PM
Mohammad Ala Tahhan
Is it ok to use a super class as just a base class if it extends to sub classes?
constructors
java
8 Votes
4 Answers
9th Feb 2018, 10:52 PM
D_Stark
why System.out.println("Grr..."); //"Grr..." is not printed ? // but the class dog is extends animal can anyone explain m
in
java
3 Votes
5 Answers
20th Sep 2017, 11:11 AM
Prathamesh Dhuri
What is the difference between importing and inheriting in Java?...
extends
import
java
2 Votes
3 Answers
15th Apr 2019, 4:17 PM
Paranoid
Is writing subclass inside the parent class same as writing subclass and referencing it to parent class using extends ?
class
java
oop
1 Vote
2 Answers
15th Aug 2020, 8:00 AM
GGWellPlayed
Why java collection framework extends iterable interface even though it needs iterator object to go through the collection?
collections
iterators
java
1 Vote
1 Answer
14th Aug 2017, 5:08 AM
Backbencher nazrul
How many times can a class extends and implements ? I mean like that : class A extenda()implements() ?
java
1 Vote
2 Answers
17th Jan 2018, 8:32 PM
rocco kedis
Exented own classes
extends
import
package
0 Votes
3 Answers
6th Jun 2019, 5:32 AM
Newbie
I use all attribut and method Person in all the extends class Person. Can i do all attribut and methods private?
an
attribu
met
0 Votes
1 Answer
28th May 2020, 2:26 PM
Malick Diagne
void meth2 (){...} in classe c1 and void math2 (int a){...} in classe c2 extends c1 is it overloading or over riding??
java
polymorphism
0 Votes
2 Answers
2nd Dec 2016, 6:14 PM
mar oua
Can you extend to multiple parent classes? In Java.
classes
extends
inheritance
java
1 Vote
4 Answers
8th Feb 2018, 3:55 PM
Daniel Moss
Constructor call that is used by the sub class to call a constructor of its superclass A. new B. extends C. implements D. super
java
0 Votes
2 Answers
23rd Aug 2016, 10:14 AM
Nardz
is it possible to create many sub-classes of one parent class?
classes
extends
inheritance
java
sub-class
2 Votes
4 Answers
14th Nov 2017, 8:10 AM
Gaurav Nagar
What is the difference between implement and extends??
extends
implement
inheritance
java
method
2 Votes
2 Answers
7th Jun 2017, 7:24 PM
Chaman Raghav
how to deal with two super() in java script
extends
html
inheritance
javascript
web
1 Vote
1 Answer
29th Apr 2019, 8:07 PM
S O U ✌️ I K
Javascript Deprecated Keywords
deprecated
editor
es6
extends
javascript
keywords
let
sololearn
3 Votes
1 Answer
3rd Jul 2019, 6:22 AM
Clueless Coder
Hi guys,i have a qus,what do the start do(obj.start())? I will be grateful if you help me class Loader extends Thread { public void run() { System.out.println("Hello"); } } class MyClass { public static void main(String[ ] args) { Loader obj = new Loader(); obj.start(); } }
java
threads
0 Votes
4 Answers
18th Mar 2017, 12:42 PM
hurricane_jvd
Throw Course
array
constructors
exeception
extends
handling
java
throw
0 Votes
1 Answer
22nd Sep 2019, 7:41 PM
Jacques Cozart
Is it possible for users to call a method through user input?
classes
else
extends
help
if
java
methods
objects
programming
statements
0 Votes
1 Answer
21st Jul 2018, 7:44 PM
C0D3X
Ask a question
Ask a question
Ask a question
Ask a question
Hot today
I have finished first in Saturn League 3 times in a row, why have I not been given the badge for “Intergalactic Champion”
4 Votes
I am new
1 Votes
Changing String Variables into int in C++
0 Votes
Python intermediate help with dictionaries
0 Votes
Marquee
1 Votes
Fill in the blank to declare a static variable.
0 Votes
What are the advantages and disadvantages of using let vs var when declaring variables in JavaScript?
0 Votes
RUST'S FUTURE
1 Votes
Any Advise?
1 Votes
Popsacles Aufgabe
1 Votes