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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:35:53+00:00 2026-06-11T02:35:53+00:00

Quick question (Theory really). I have a variable that its type alternates depending on

  • 0

Quick question (Theory really). I have a variable that its type alternates depending on a value, for example:

8, 16, 24, 32

And I define this by doing, for example:

uint8_t = 10; // example

But, at the minute I’m switching the “number” and repeating the code but declaring the integer value differently. Which, as you can tell, is a lot of wasteful code and I want to code more effectively.

I’m wondering if It’s possible to have template that assigns the variable depending on the value? (If that makes sense)..

if value == 8
  uint8_t = foo;
elseif value == 16
  uint32_t
...

Any ideas or suggestions? Thank you 🙂

  • 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-11T02:35:54+00:00Added an answer on June 11, 2026 at 2:35 am

    Like so:

    template <unsigned int N> struct IntN;
    
    template <> struct IntN< 8> { typedef  uint8_t type; };
    template <> struct IntN<16> { typedef uint16_t type; };
    template <> struct IntN<32> { typedef uint32_t type; };
    template <> struct IntN<64> { typedef uint64_t type; };
    
    IntN<8>::type x = 5;
    

    The template argument has to be a constant expression.

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

Sidebar

Related Questions

Quick question that requires a long explanation.. Say I have two tables - one
I have a quick question, more theory then actual code. I am building a
Quick question. I have a fortran77 subroutine with a variable declaration DIMENSIONS HH(13, 1000)
Quick question: If I have a very large function/sub in a class that is
Quick question on best practices. I have one project MVC3 + razor that on
Quick question. What do you think, I have a few sites that use a
Quick question that I haven't really had a chance to look into. Which is
Quick question just to verify something. If I have an HTML5 mobile advertisement that
Quick question about data joining. Say I have some elements that each contain a
Quick question, I have the following string which is a coma separated list of

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.