why only clone and finalize are protected method in object calss?
I understand the purpose of making the clone and finalize method as protected, I wanted to understand why hashcode() and equals method are not declared as protected
java object equals hashcode protected
add a comment |
I understand the purpose of making the clone and finalize method as protected, I wanted to understand why hashcode() and equals method are not declared as protected
java object equals hashcode protected
Simply put, because you would like to use these outside of the class
– Ivan Kaloyanov
Nov 22 '18 at 11:01
add a comment |
I understand the purpose of making the clone and finalize method as protected, I wanted to understand why hashcode() and equals method are not declared as protected
java object equals hashcode protected
I understand the purpose of making the clone and finalize method as protected, I wanted to understand why hashcode() and equals method are not declared as protected
java object equals hashcode protected
java object equals hashcode protected
asked Nov 22 '18 at 10:58
VigneshVignesh
165
165
Simply put, because you would like to use these outside of the class
– Ivan Kaloyanov
Nov 22 '18 at 11:01
add a comment |
Simply put, because you would like to use these outside of the class
– Ivan Kaloyanov
Nov 22 '18 at 11:01
Simply put, because you would like to use these outside of the class
– Ivan Kaloyanov
Nov 22 '18 at 11:01
Simply put, because you would like to use these outside of the class
– Ivan Kaloyanov
Nov 22 '18 at 11:01
add a comment |
2 Answers
2
active
oldest
votes
Because you want to call hashcode
and equals
methods from the outside of that given class.
protected
allows access only from the same package and extending classes.
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
You are wrong.protected
methods of classa.b.Class
are visible in packagea.b
but not ina.b.z
– Antoniossss
Nov 23 '18 at 8:13
add a comment |
You "understand the purpose of making the clone and finalize method as protected". But what is the purpose actually?
Calling Object.clone
will throw an exception if the method isn't overridden and if Cloneable
isn't implemented. Thus this method isn't ready to use.
Object.finalize
is according to JavaDoc "called by the garbage collector". Thus it is for internal usage only.
In contrast to these both methods are Object.equals
and Object.hashCode
ready to use and not for internal usage.
The JavaDoc of Object.hashCode
says:
This method is supported for the benefit of hash tables such as those
provided byHashMap
.
Thus it is intended to be used by other objects. If hashCode
wouldn't be declared public
this functionality would be limited usable.
Object.equals
is a symmetric method. If Object.equals
wouldn't be declared public
, suppose we have a local variable b
of a type from another package and whose equals
method isn't visible to this
. We want to ckeck if b
and this
are equal. We couldn't call b != null && b.equals(this)
but we could still call this.equals(b)
. Does it makes sense to limit a symmetric method to be callable by one of both objects only?
See also Comparable
.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429435%2fwhy-only-clone-and-finalize-are-protected-method-in-object-calss%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Because you want to call hashcode
and equals
methods from the outside of that given class.
protected
allows access only from the same package and extending classes.
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
You are wrong.protected
methods of classa.b.Class
are visible in packagea.b
but not ina.b.z
– Antoniossss
Nov 23 '18 at 8:13
add a comment |
Because you want to call hashcode
and equals
methods from the outside of that given class.
protected
allows access only from the same package and extending classes.
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
You are wrong.protected
methods of classa.b.Class
are visible in packagea.b
but not ina.b.z
– Antoniossss
Nov 23 '18 at 8:13
add a comment |
Because you want to call hashcode
and equals
methods from the outside of that given class.
protected
allows access only from the same package and extending classes.
Because you want to call hashcode
and equals
methods from the outside of that given class.
protected
allows access only from the same package and extending classes.
edited Nov 22 '18 at 11:07
answered Nov 22 '18 at 11:01
AntoniossssAntoniossss
16.1k12354
16.1k12354
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
You are wrong.protected
methods of classa.b.Class
are visible in packagea.b
but not ina.b.z
– Antoniossss
Nov 23 '18 at 8:13
add a comment |
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
You are wrong.protected
methods of classa.b.Class
are visible in packagea.b
but not ina.b.z
– Antoniossss
Nov 23 '18 at 8:13
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
Hi @antoniossss, thanks for response, but Object class is root package for all the classes, so I believe it should be available to all the classes. one more reason why clone and finalize methods are protected is to make overriding it with either protected or public visibility. so why not hashcode and equals
– Vignesh
Nov 23 '18 at 6:45
You are wrong.
protected
methods of class a.b.Class
are visible in package a.b
but not in a.b.z
– Antoniossss
Nov 23 '18 at 8:13
You are wrong.
protected
methods of class a.b.Class
are visible in package a.b
but not in a.b.z
– Antoniossss
Nov 23 '18 at 8:13
add a comment |
You "understand the purpose of making the clone and finalize method as protected". But what is the purpose actually?
Calling Object.clone
will throw an exception if the method isn't overridden and if Cloneable
isn't implemented. Thus this method isn't ready to use.
Object.finalize
is according to JavaDoc "called by the garbage collector". Thus it is for internal usage only.
In contrast to these both methods are Object.equals
and Object.hashCode
ready to use and not for internal usage.
The JavaDoc of Object.hashCode
says:
This method is supported for the benefit of hash tables such as those
provided byHashMap
.
Thus it is intended to be used by other objects. If hashCode
wouldn't be declared public
this functionality would be limited usable.
Object.equals
is a symmetric method. If Object.equals
wouldn't be declared public
, suppose we have a local variable b
of a type from another package and whose equals
method isn't visible to this
. We want to ckeck if b
and this
are equal. We couldn't call b != null && b.equals(this)
but we could still call this.equals(b)
. Does it makes sense to limit a symmetric method to be callable by one of both objects only?
See also Comparable
.
add a comment |
You "understand the purpose of making the clone and finalize method as protected". But what is the purpose actually?
Calling Object.clone
will throw an exception if the method isn't overridden and if Cloneable
isn't implemented. Thus this method isn't ready to use.
Object.finalize
is according to JavaDoc "called by the garbage collector". Thus it is for internal usage only.
In contrast to these both methods are Object.equals
and Object.hashCode
ready to use and not for internal usage.
The JavaDoc of Object.hashCode
says:
This method is supported for the benefit of hash tables such as those
provided byHashMap
.
Thus it is intended to be used by other objects. If hashCode
wouldn't be declared public
this functionality would be limited usable.
Object.equals
is a symmetric method. If Object.equals
wouldn't be declared public
, suppose we have a local variable b
of a type from another package and whose equals
method isn't visible to this
. We want to ckeck if b
and this
are equal. We couldn't call b != null && b.equals(this)
but we could still call this.equals(b)
. Does it makes sense to limit a symmetric method to be callable by one of both objects only?
See also Comparable
.
add a comment |
You "understand the purpose of making the clone and finalize method as protected". But what is the purpose actually?
Calling Object.clone
will throw an exception if the method isn't overridden and if Cloneable
isn't implemented. Thus this method isn't ready to use.
Object.finalize
is according to JavaDoc "called by the garbage collector". Thus it is for internal usage only.
In contrast to these both methods are Object.equals
and Object.hashCode
ready to use and not for internal usage.
The JavaDoc of Object.hashCode
says:
This method is supported for the benefit of hash tables such as those
provided byHashMap
.
Thus it is intended to be used by other objects. If hashCode
wouldn't be declared public
this functionality would be limited usable.
Object.equals
is a symmetric method. If Object.equals
wouldn't be declared public
, suppose we have a local variable b
of a type from another package and whose equals
method isn't visible to this
. We want to ckeck if b
and this
are equal. We couldn't call b != null && b.equals(this)
but we could still call this.equals(b)
. Does it makes sense to limit a symmetric method to be callable by one of both objects only?
See also Comparable
.
You "understand the purpose of making the clone and finalize method as protected". But what is the purpose actually?
Calling Object.clone
will throw an exception if the method isn't overridden and if Cloneable
isn't implemented. Thus this method isn't ready to use.
Object.finalize
is according to JavaDoc "called by the garbage collector". Thus it is for internal usage only.
In contrast to these both methods are Object.equals
and Object.hashCode
ready to use and not for internal usage.
The JavaDoc of Object.hashCode
says:
This method is supported for the benefit of hash tables such as those
provided byHashMap
.
Thus it is intended to be used by other objects. If hashCode
wouldn't be declared public
this functionality would be limited usable.
Object.equals
is a symmetric method. If Object.equals
wouldn't be declared public
, suppose we have a local variable b
of a type from another package and whose equals
method isn't visible to this
. We want to ckeck if b
and this
are equal. We couldn't call b != null && b.equals(this)
but we could still call this.equals(b)
. Does it makes sense to limit a symmetric method to be callable by one of both objects only?
See also Comparable
.
edited yesterday
answered Nov 22 '18 at 15:29
LuCioLuCio
2,8671823
2,8671823
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53429435%2fwhy-only-clone-and-finalize-are-protected-method-in-object-calss%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Simply put, because you would like to use these outside of the class
– Ivan Kaloyanov
Nov 22 '18 at 11:01