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

  • Home
  • SEARCH
  • 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 6225341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:49:30+00:00 2026-05-24T08:49:30+00:00

I have two struct s defined as in the following: struct vertex { double

  • 0

I have two structs defined as in the following:

struct vertex
{
  double x;
  double y;
  double z;
};

struct finalVertex
{
  int n;
  vertex v;
};

I use the following code to iterate through the list and print all the members:

  vector<finalVertex> finalVertices;
  vector<finalVertex>::iterator ve;

  for ( ve = finalVertices.begin(); ve < finalVertices.end(); ve++ )
    {
      out << *(ve).v.x << *(ve).v.y << *(ve).v.z << endl;
    }

I receive the following code of error:

main.cpp:651: error: ‘class __gnu_cxx::__normal_iterator > >’ has no
member named ‘v’

What is the syntactically correct way of accessing the elements of the set?

  • 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-24T08:49:32+00:00Added an answer on May 24, 2026 at 8:49 am

    The problem is operator precedence: write (*ve).v.x or simpler, ve->v.x.

    Apart from that, I would advise you to override operator << for your vertex structure to make your code vastly more readable:

    std::ostream& operator <<(std::ostream& out, vertex const& value) {
        return out << value.x << " " << value.y << " " << value.z;
    }
    

    and then use it like this:

    for ( ve = finalVertices.begin(); ve != finalVertices.end(); ve++ )
        out << ve->v << endl;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So, I have two structs: struct coordinate { float x; float y; } struct
I have two structs: template <typename T> struct Odp { T m_t; T operator=(const
I have some trouble understanding the output from the following code: int main(void) {
I have written the following C99 code and was wondering about the struct declaration.
I came across a difference in speed using the following two structs: public struct
I have two window form applications written in C, one holds a struct consisting
Hey I have a problem comparing the value of a CGPoint (struct with two
In our application we have a Queue which is defined as the following: private
I have the following code (sorry for the large code chunk, but I could
I have the following struct: public struct Declarations { public const string SchemaVersion =

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.