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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:27:03+00:00 2026-06-14T23:27:03+00:00

Can someone explain to me how/when/why to use const keyword, or it is just

  • 0

Can someone explain to me how/when/why to use const keyword, or it is just “a way to declare a constant variable”? If so, what’s the difference between this :

int x = 5;

and

const int x = 5;

Could you guys please give me an example?

  • 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-14T23:27:04+00:00Added an answer on June 14, 2026 at 11:27 pm

    const means compile time constant. The expression value must be known at compile time. const modifies "values".

    From news.dartlang.org,

    "const" has a meaning that’s a bit more complex and subtle in Dart.
    const modifies values. You can use it when creating collections,
    like const [1, 2, 3], and when constructing objects (instead of new)
    like const Point(2, 3). Here, const means that the object’s entire
    deep state can be determined entirely at compile time and that the
    object will be frozen and completely immutable.

    if you use

    const x = 5 then variable x can be used in a const collection like

    const aConstCollection = const [x];
    

    if you don’t use const, and just use x = 5 then

    const aConstCollection = const [x]; is illegal.

    More examples from http://www.dartlang.org

    class SomeClass {
      static final someConstant = 123;
      static final aConstList = const [someConstant]; //NOT allowed
    }
    
    class SomeClass {
      static const someConstant = 123; // OK
      static final startTime = new DateTime.now(); // OK too
      static const aConstList = const [someConstant]; // also OK
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone explain the difference between text() and string() functions. I often use one
Can someone explain when you're supposed to use the static keyword before global variables
Can someone explain why/when I should use a navigation toolbar instead of just having
Can someone explain what the Volatile keyword use used for...for someone coming from a
This may sound very basic... can someone please explain the use of the toString()
Can someone explain how to use JSON-RPC.net in my application for windows phone. When
Can someone explain why it's best use is for prototyping? Should it not be
Can someone explain to me why I cannot use document.getElementById('id').value inside of a function?
Can someone explain to me in detail when I must use each attribute: nonatomic
Can someone please explain me why would a UDP Server not need to use

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.