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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:00:10+00:00 2026-06-15T00:00:10+00:00

I know how to define a class method inside of the same file with

  • 0

I know how to define a class method inside of the same file with which the class is in.

For example:

class Robot
{public:
 int location;

 void Moves(); //Class method to be defined
}

void Robot::Moves()
{//Method definition here }

I do NOT know hot to define a class outside of the file in which the class is in. I tried creating a .hpp file and defining a class method inside of it, but my compiler signified that it could not load a class definition from a file other than the one the class was created in, or it would be as though I was placing a function’s definition before the include directives.

Please note: The original class file is also in a .hpp file, as I have yet to learn how to use .cpp files other than the main one.

This is done using C++/Win32.

  • 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-15T00:00:12+00:00Added an answer on June 15, 2026 at 12:00 am

    Create a .cpp file along these guidelines

    • Include your class header file in your .cpp file
    • Include all necessary headers you would use in main.cpp
    • use the scope operator for your class

    #include <iostream>
    #include "foo.hpp"
    
    foo::foo()
    {
    //    code here
    }
    
    void foo::OtherFunc()
    {
    //    other stuff here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that one can define an 'expected' exception in JUnit, doing: @Test(expect=MyException.class) public
I know that declaring a function (normal function not a method inside a class)
I have an abstract class: class A { public: bool loaded_; virtual int load()
I didn't know methods could have floating blocks like this: class X { public
In some class method, A, I need to call a library method B, which
I have the following code: #include <iostream> class Grandma { public: virtual void foo()
I have a class which holds a list inside a list, and its declared
I know I can define default parameters in python, but can I do so
I know I can define new structs in ruby by doing Person = Struct.new(:first_name,
As I know I can define a new Enum DataFormat at the my project

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.