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

  • SEARCH
  • Home
  • 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 8978969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T19:44:06+00:00 2026-06-15T19:44:06+00:00

Possible Duplicate: Cannot access static field within enum initialiser My situation: enum Attribute {

  • 0

Possible Duplicate:
Cannot access static field within enum initialiser

My situation:

enum Attribute { POSITIVE, NEGATIVE }
enum Content {
    C1(Attribute.POSITIVE),
    C2(Attribute.POSITIVE),
    ... // some other positive enum instances.
    Cm(Attribute.NEGATIVE),
    ... // some other negative enum instances.
    Cn(Attribute.NEGATIVE);

    private final Atrribute a;
    static int negativeOffset = 0;
    private Content(Atrribute a) {
        this.a = a;
        if ( a.compareTo(Attribute.POSITIVE) == 0 ) {
               negativeOffset ++;
        }
    }

    public static int getNegativeOffset() { return negativeOffset; }
} 

My intention is to add negativeOffset by one whenever I add a new enum(with POSITIVE attribute), then I could call the getNegativeOffset() to get the start point of negative
enum and do whatever I want.

But comlier complains that

Cannot refer to the static enum field Content.negativeOffset within an initializer

  • 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-06-15T19:44:07+00:00Added an answer on June 15, 2026 at 7:44 pm

    You can use this “trick”:

    private static class IntHolder {
        static int negativeOffset;
    }
    

    then refer to the variable like this:

    IntHolder.negativeOffset ++;
    

    and

    return IntHolder.negativeOffset; 
    

    The reason this works is that the JVM guarantees that the variable is initialized when the IntHolder static inner class is initialized, which doesn’t happen until it’s accessed.

    The whole class will then be as follows, which compiles:

    enum Attribute { POSITIVE, NEGATIVE }
    enum Content {
        C1(Attribute.POSITIVE),
        C2(Attribute.POSITIVE),
        ... // some other positive enum instances.
        Cm(Attribute.NEGATIVE),
        ... // some other negative enum instances.
        Cn(Attribute.NEGATIVE);
    
        private final Attribute a;
    
        private static class IntHolder {
            static int negativeOffset;
        }
    
        private Content(Attribute a) {
            this.a = a;
            if ( a == Attribute.POSITIVE) {
                   IntHolder.negativeOffset ++;
            }
        }
    
        public static int getNegativeOffset() { return IntHolder.negativeOffset; }
    }
    

    Note the corrections for spelling errors and the simpler comparison with the Attribute enum value using == instead of compareTo()

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

Sidebar

Related Questions

Possible Duplicate: Cannot declare Public static final String s = new String(“123”) inside an
Possible Duplicate: add values to enum Why enums in Java cannot inherit from other
Possible Duplicate: XSLT attribute node (id) cannot be created after the children of the
Possible Duplicate: Cannot access private member in singleton class destructor I'm implementing a singleton
Possible Duplicate: The calling thread cannot access this object because a different thread owns
Possible Duplicate: error C2248: ‘std::basic_ios<_Elem,_Traits>::basic_ios’ : cannot access private member declared in class ‘std::basic_ios<_Elem,_Traits>’
Possible Duplicate: c++ publicly inherited class member cannot be used as default argument Nonstatic
Possible Duplicate: Why is this code invalid in C#? Conditional operator cannot cast implicitly?
In SQL its possible to have fields that cannot contain duplicate data. How is
Possible Duplicate: How to access a numeric property? I am trying to read an

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.