Tagged Questions
5
votes
6answers
193 views
Question about class variable declarations in C++
I have a class to represent a 3D vector of floats:
class Vector3D
{
public:
float x, y, z;
float * const data;
Vector3D() : x(0.0), y(0.0), z(0.0), data(&x) {}
}
My question ...
3
votes
2answers
130 views
Template function “Subscript requires array type”, but works in smaller projects. Why?
The following code is part of an interpolation function I wrote as part of a larger project. The first version of this function returned the myScalar yval, but I modified it to return a flag on ...
3
votes
3answers
1k views
Overloading operator [] for a sparse vector
I'm trying to create a "sparse" vector class in C++, like so:
template<typename V, V Default>
class SparseVector {
...
}
Internally, it will be represented by an std::map<int, V> ...
2
votes
2answers
284 views
How to overload the subscript operator with swig Python
I have a class which contains a std::vector<Foo> where Foo is a class containing a key, value, comment, etc. Please note that there is a reason why I am using a vector and not a dictionary.
I ...
1
vote
1answer
42 views
Using a subscript operator on a char pointer passed into a function doesn't modify the value. Why? [closed]
I've noticed that the following function:
void myFunction(char *myString)
{
myString[0] = 'H';
}
will not actually modify myString. However, this function does:
void myFunction2 (char ...
1
vote
2answers
267 views
I am getting a error [ error: expected unqualified-id before ‘&’ token ] in a c++ program
I am getting a unusual error:
error: expected unqualified-id before ‘&’ token
Source code:
// Overloading the c++ array subscript operator [ ]
#include<iostream>
using namespace std;
...
1
vote
4answers
325 views
missing subscript c++
right now c++ is giving me this error: error C2087 'color' missing subscript first time i get this and i dont know what to do >.< hope any1 can help me
struct Color{
float r;
float g;
...
1
vote
4answers
483 views
Operator() as a subscript (C++)
I use operator() as a subscript operator this way:
double CVector::operator() (int i) const
{
if (i >= 0 && i < this->size)
return this->data[i];
else
return 0;
}
...
1
vote
1answer
462 views
Qt - How to do superscripts and subscripts in a QLineEdit?
I need to have the ability to use superscripts asnd subscripts in a QLineEdit in Qt 4.6. I know how to do superscripts and subscripts in a QTextEdit as seen below but I can't figure out how to do them ...
1
vote
2answers
310 views
Using boost::bind output as an array subscript
How do I get boost::bind to work with array subscripts? Here's what I'm trying to achieve. Please advice.
[servenail: C++Progs]$ g++ -v
Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.6/specs
...
0
votes
2answers
63 views
Subscript operator overload and reference to pointer error
I'm struggling with a strange error for a while now and I need your help :D
I have an 'Image' class declared like
template <typename P>
class Image {
// ...
public: // Operators
...
0
votes
2answers
67 views
c++ subscript operator for 2D matrix between different files
I had create a template class of 2D matrix.
but subscript operator(LINE 13,14,16~36) canNOT work normally.
If I mark LINE 72~74(dio.cpp), program could be run.
LINE 91~93 CAN work.
If LINE ...
0
votes
4answers
201 views
subscript operator postfix
The C++ standard defines the expression using subscripts as a postfix expression. AFAIK, this operator always takes two arguments (the first is the pointer to T and the other is the enum or integral ...
0
votes
2answers
1k views
How to print subscripts/superscripts on a CLI?
I'm writing a piece of code which deals with math variables and indices, and I'd need to print subscripts and superscripts on a CLI, is there a (possibly cross-platform) way to do that? I'm working in ...
-2
votes
1answer
207 views
Vector subscript out of range [closed]
I'm getting the vector subscript out of range error. I've had it before, but it prints 'before' but it doesn't print 'after' so I'm confused at to why one of these lines would be causing it.
cout ...