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 6704719
In Process

The Archive Base Latest Questions

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

If you writing a class and you use something like this … int x;

  • 0

If you writing a class and you use something like this

...
int x;
{ x = 2; }
...

This would be an initialisation block right?

So how would you use curly braces just to designate scope, so that they are executed like any other code? Basically so they are not part of the constructor.

Ex

if you were to use a block inside a switch statement, would this be executed like an initialisation block?

    switch(...)
    {
    case :
    { // this right here how does the compiler know the difference?
    ...
    break;
    }
    }
  • 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-26T07:19:15+00:00Added an answer on May 26, 2026 at 7:19 am

    Initialization blocks only apply to blocks that are in the scope of a class and are not preceded by a function prototype (i.e. blocks that are not the body of a function).

    Within the body of a function, any blocks that you create will introduce scope but will not be interpreted as an initialization.

    Example:

    public class NameOfClass {
        {
            // This is an initalization block
        }
    
        AccessModifier ReturnType nameOfFunction(ParamType nameOfParam) {
            // This is a function body and is not an initialization
    
            {
              // This introduces scope, is not an initialization
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I saw someone writing code like this , in a C++ class: int foo
Basically I would like to do something like this at the top of my
I have a class that looks something like this: class User < ActiveRecord:Base has_many
I'm writing a generic class where I need to use Interlocked. T test1, test2;
I am writing a Graph-class using boost-graph-library. I use custom vertex and edge properties
I'm writing a small ajax class for personal use. In the class, I have
Right now I have classes like: abstract class Record { // Required fields val
I often find myself writing a property that is evaluated lazily. Something like: if
In C#, if you have multiple constructors, you can do something like this: public
Lots of websites use class names like floatleft , clearfloat , alignright , small

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.