Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 854891
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T07:59:46+00:00 2026-05-15T07:59:46+00:00

i tried the following code for cloning the object. while compiling it shows clone

  • 0

i tried the following code for cloning the object. while compiling it shows clone is protected and cannot be accessed, but i had extended Object class, hence the clone method will be public to my class . please explain me the reason.

class storeDate extends Object {

  public static void main(String[] args)
  {

    storeDate d = new storeDate();
    Object o = (storeDate)d;
    o.clone():
  }

}

while compilation i get this error

clone() has protected access in java.lang.Object
kkk.clone();

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T07:59:47+00:00Added an answer on May 15, 2026 at 7:59 am

    The key thing here is which package the classes belongs to.

    This is explained in JLS paragraph 6.6.2:

    6.6.2 Details on protected Access
    A protected member or constructor of an object may be accessed from outside the package in which it is declared only by code that is responsible for the implementation of that object.


    Examples:

    This does not compile:

    FILE pkg1/A.java (corresponds to the Object class in your question)

    package pkg1;
    public class A {
        protected void method() {};
    }
    

    FILE pkg2/B.java (corresponds to storeDate in your question)

    package pkg2;
    import pkg1.A;
    public class B extends A {
        public static void main(String args[]) {
            new A().method();
        }
    }
    

    javac outputs the following:

    pkg2/B.java:5: method() has protected access in pkg1.A
            new A().method();
                   ^
    

    (which is similar to what you have: clone() has protected access in java.lang.Object kkk.clone();)


    Simply moving B to the pkg1 package solves it.

    That is, this does compile:

    FILE pkg1/A.java (unchanged)

    package pkg1;
    public class A {
        protected void method() {};
    }
    

    FILE pkg1/B.java (moved from pkg2 to pkg1)

    package pkg1;                 // Changed from pkg2
    //import pkg1.A;              // Not necessary anymore.
    public class B extends A {
        public static void main(String args[]) {
            new A().method();
        }
    }
    

    So, what would have been required for you to be able to do something like new Object().clone()? Well, you would have to belong to the java.lang package (which in turn, however results in a SecurityException: Prohibited package name: java.lang).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 461k
  • Answers 461k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You probably want Marshal::StringToHGlobalAnsi IntPtr p = Marshal::StringToHGlobalAnsi(managedString); char* c… May 16, 2026 at 12:11 am
  • Editorial Team
    Editorial Team added an answer Not only will a finally block execute following a catch… May 16, 2026 at 12:11 am
  • Editorial Team
    Editorial Team added an answer Most of the simple Regex engines used by editors aren't… May 16, 2026 at 12:11 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.