C++ (Qt)#include <QSet>QSet<int *> theSet; void Test( const int * ptr ){ theSet.insert(ptr);}
C++ (Qt)void Test( int * const ptr ){ theSet.insert(ptr);}
C++ (Qt)typedef int * TInt;void Test( const TInt ptr ){ theSet.insert(ptr);}
void Test(int* ptr){ theSet.insert(ptr);}
C++ (Qt)// оказывается такая записьtypedef int * PInt;const PInt a; // равнозначна такой (константный указатель)int * const a; // а вовсе не такой (указатель на константу)const int * a;
const int * a;
int * const a;
int * const
const int *