473,591 Members | 2,842 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Structs and pointers don't display in watch window???

Say I have a managed C++ app with some code that looks something like this:

void MyMethod()
{
struct Point { int x, y; };

Point* p = new Point;

p.x = 1;
p.y = 2;
....
}

During a debugging session, if I create a watch for the variable p, the
watch window does not display its contents. It says it is an invalid
pointer; Further more, if I create a watch for p->x or p->y, it says the
variable does not exist. If I change my code as follows:

struct Point { int x, y; };
....
void MyMethod()
{
Point* p = new Point;

p.x = 1;
p.y = 2;
....
}

then the Watch window correctly displays the value of p as a expandable
structure with a + sign that lets you see x and y as individual variables.

I also had something as simple as this:

{
int* pi = new int;
...
}

and the watch window displayed this value as invalid.

What's going on here anyway? I've experienced a lot of different cases where
the watch window just won't display the values of pointers and simple
structs, whereas in other cases it has no problems. Any suggestions would be
appreciated.
Nov 17 '05 #1
2 1385
Peter,
Say I have a managed C++ app with some code that looks something like this:
void MyMethod()
{
struct Point { int x, y; };

Point* p = new Point;

p.x = 1;
p.y = 2;
...
}

During a debugging session, if I create a watch for the variable p, the
watch window does not display its contents. It says it is an invalid
pointer; Further more, if I create a watch for p->x or p->y, it says the
variable does not exist. If I change my code as follows:

struct Point { int x, y; };
...
void MyMethod()
{
Point* p = new Point;

p.x = 1;
p.y = 2;
...
}

then the Watch window correctly displays the value of p as a expandable
structure with a + sign that lets you see x and y as individual variables.

I also had something as simple as this:

{
int* pi = new int;
...
}

and the watch window displayed this value as invalid.

What's going on here anyway? I've experienced a lot of different cases where the watch window just won't display the values of pointers and simple
structs, whereas in other cases it has no problems. Any suggestions would be appreciated.


I commented on this a while back on my weblog [1]. Perhaps it might help you
understand a bit what's going on...

[1] http://www.winterdom.com/weblog/archives/000067.html

--
Tomas Restrepo
to****@mvps.org
Nov 17 '05 #2
Thanks very much for this info. I suspected it had something to do with
managed/unmanaged code. The pointers in this weblog on the problem will
definitely help.

Peter

"Tomas Restrepo (MVP)" <to****@mvps.or g> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Peter,
Say I have a managed C++ app with some code that looks something like

this:

void MyMethod()
{
struct Point { int x, y; };

Point* p = new Point;

p.x = 1;
p.y = 2;
...
}

During a debugging session, if I create a watch for the variable p, the
watch window does not display its contents. It says it is an invalid
pointer; Further more, if I create a watch for p->x or p->y, it says the
variable does not exist. If I change my code as follows:

struct Point { int x, y; };
...
void MyMethod()
{
Point* p = new Point;

p.x = 1;
p.y = 2;
...
}

then the Watch window correctly displays the value of p as a expandable
structure with a + sign that lets you see x and y as individual
variables.

I also had something as simple as this:

{
int* pi = new int;
...
}

and the watch window displayed this value as invalid.

What's going on here anyway? I've experienced a lot of different cases

where
the watch window just won't display the values of pointers and simple
structs, whereas in other cases it has no problems. Any suggestions would

be
appreciated.


I commented on this a while back on my weblog [1]. Perhaps it might help
you
understand a bit what's going on...

[1] http://www.winterdom.com/weblog/archives/000067.html

--
Tomas Restrepo
to****@mvps.org

Nov 17 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
425
by: Jan-Henrik Grobe | last post by:
Hallo, I am coming to this newsgroup with a very strange Problem. I have two c++ files A.cpp and B.cpp....In A.cpp I am creating an openGL window and in B.cpp I have stored the callback functions. Important is, that the object A.o has to be created BEFORE B can be compiled. I am sure that sounds confusing but A.cpp is part of a library that is needed for objects I use in B (kind of client-server thing). So I cannot include a B.h in the...
3
2160
by: Christian F | last post by:
Hi, I'm a C-newbie and I would like to know if I am doing something wrong in the code below. It is working, but I'm afraid it might not be correct because I don't really understand everything of it. There are lots of pointers and pointers to pointers which makes me confused. First my typedef: typedef struct { double re;
5
3118
by: Paminu | last post by:
Why make an array of pointers to structs, when it is possible to just make an array of structs? I have this struct: struct test { int a; int b;
4
1122
by: Austin | last post by:
I converted a project from VC6 to VC7. There is a problem in one class of this dll. ///Class1.h class CClass1: base class { private: int m_nTest; public : void Function1() }
6
1891
by: Tau | last post by:
look my simple code below(vc8): double ends; ends=8.3; when i debug it, the variable ends cannot be displayed in the watch window. it just said "error: index '0' out of bound for pointer/array 'ends'". why would this happen? Is it a bug of VC8?
5
2758
by: Bidule | last post by:
Hi, I'm trying to sort structs defined as follows: struct combinationRec { float score; char* name; }; The number of structs and the length of the "name" field are not known
5
2901
by: Bilgehan.Balban | last post by:
Hi, I am currently brushing up my c++ knowledge and I would like to ask you about the differences between classes and C structs, in the function/method perspective. 1) Is it correct to say that, a structure definition that includes function pointers only defines the function prototypes to be used with them, but not the actual implementations, whereas in C++, member functions cannot be changed *unless* virtual functions are used, or the
12
25981
by: barcaroller | last post by:
Is it legal to compare the contents of two multi-field variables (of the same struct) using "==" and "!="? struct { int a; int b; } x,y; ...
17
3466
by: Johan Tibell | last post by:
Could someone outline the pros and cons of typedefing pointers to structs like this? typedef struct exp_ { int val; struct exp_ *child; } *exp; (This is straight from memory so it might not even compile.)
0
7934
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7870
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8236
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8362
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7992
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6639
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5732
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
3850
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
1199
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.