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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:49:10+00:00 2026-05-27T11:49:10+00:00

Where does size_t come from when I don’t have anything included? Is it reasonable

  • 0
  • Where does size_t come from when I don’t have anything included?
  • Is it reasonable to always assume size_t == std::size_t?
  • When should I use the size_type in std containers (string::size_type, vector<T>::size_type, etc)?
  • 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-27T11:49:10+00:00Added an answer on May 27, 2026 at 11:49 am

    Where does size_t come from when I don’t have anything included in an empty project?

    If you don’t have anything included, then you can’t use size_t. It’s defined in <stddef.h> (and perhaps also in <cstddef>, if your version of that header puts the definitions in the global namespace as well as std).

    Is it reasonable to always assume size_t == std::size_t?

    Yes. All types and functions defined by the C library are included in the std namespace, as long as you include the appropriate C++ header (e.g. <cstddef> rather than <stddef.h>)

    When should I use std::_::size_type?

    Do you mean the size_type types defined in some standard classes and templates such as vector? You could use those when using those classes if you like. In most cases, you’ll know that it’s the same as size_t, so you might as well use that and save a bit of typing. If you’re writing generic code, where you don’t know what the class is, then it’s better to use size_type in case it’s not compatible with size_t.

    For example, you might want to write a container designed to hold more items than can be represented by size_t. You might use some kind of big number type to represent the container’s size, which isn’t convertible to size_t. In that case, code like size_t s = c.size() would fail to compile – you’d need to use Container::size_type instead.

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

Sidebar

Related Questions

Question says it all. Does anyone know if the following... size_t div(size_t value) {
Consider the following function prototypes: void Remove(SomeContainer& Vec, const std::size_t Index); SomeContainer Remove(SomeContainer Vec,
Recently I have been working on sockets in C++ and I have come across
I am currently working through Accelerated C++ and have come across an issue in
I am wondering does the size() function returns an internal stored variable (which gives
Does the results of IntPtr.Size show the OS that the .NET app is running
Does anyone know how to change the size of a panel in the gui
What does exactly the star in size terms in WPF mean?
Why does the array a not get initialized by global variable size ? #include<stdio.h>
How does one programmatically determine a Chrome user's maximum temporary internet files cache size?

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.