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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:15:52+00:00 2026-06-05T14:15:52+00:00

I have a class Class1 in some header file Class1.hpp class Class1 { static

  • 0

I have a class Class1 in some header file Class1.hpp

 class Class1
 {
   static std::vector<bool> var1;
   func();
  }


func()
{
 var1.clear();
 int t=0;
 do
 {
   var1.push_back(t++);
 }while(true); //its some condition

Now inside another function main() in another class in another file, i am assigning var1 to another std::vector like:

 std::vector<bool> var2=Class1::var1;

When I am doing this its giving me the error:

undefined reference to Class1::var1

I am not getting what am I doing wrong. Can someone be kind enough to help in rectifying the error?

  • 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-05T14:15:53+00:00Added an answer on June 5, 2026 at 2:15 pm

    The error you are getting is a linking error not a compilation error.
    The linker tells you that it cannot find definition of Class1::var1

    You just declared the vector member but did not define it.
    Add:

    std::vector<bool> Class1::var1;
    

    to only one of your cpp files.


    Good Read:
    What is the difference between a definition and a declaration?

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

Sidebar

Related Questions

I have a class level int defined in my header file. In the .m
i want to create some header file for future use but i have 1
i have shared the header file containing class definition of a Context Free grammar
I have one class, called A, and it has it's own header file. Then
I have a class defined in a separate file and at some point I
With C++, I can have one class definition in a header file, and have
I have a class that I would like to reference in my header file,
I have a class that represents some file data. The file contains some headers.
I have this class: Logger.h class Logger{ std::string filename; std::ofstream fileStream; /*Some methods ...*/
I have a class with the following property and method: header file below -

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.