templated pointer function for simple array

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • shaun

    #1

    templated pointer function for simple array

    Dear all,
    I realized an error in a previous post, I reproduce it here because I'm
    still not sure how to solve it:

    I want to make a templated function which points to one-past-the-end of
    a simple array, to pass to a range constructor for a const vector.
    Here is some demonstration code:

    #include <iostream>
    using namespace std;
    const double a[]={
    2.3,4.5,6.6,8.0 ,10.0
    };

    template<class T> T * endof( T parray[]){
    int elementSize = sizeof(parray[0]);
    int arraySize = sizeof(parray);
    cout<<"Inside the function:"<<end l;
    cout<<"Arraysiz e: "<<arraySiz e<<" Element size: "<<elementSize< <endl;
    cout<<"Pointer to array start "<<parray<<endl ;
    int numel= arraySize/elementSize;
    return (parray+numel);
    };

    int main (int argc, char * const argv[]) {
    const double * pEnd=endof(a);
    cout<<"Returned pointer: "<<pEnd<<endl<< endl;
    cout<<"Outside the function: "<<endl;
    cout<<"Array size: "<<sizeof(a );
    cout<<" Element size: "<<sizeof(a[0])<<endl;
    cout<<"Pointer to array start: "<<a<<endl;
    int numElements=siz eof(a)/sizeof(a[0]);
    const double * pEnd2= a+numElements;
    cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
    cout<<"Pointer to a[5]"<<&(a[5])<<endl;
    return 0;
    }

    ...but my templated function doesn't work at all, here is the output:

    Inside the function:
    Arraysize: 4 Element size: 8
    Pointer to array start 0xe9ef0
    Returned pointer: 0xe9ef0

    Outside the function:
    Array size: 40 Element size: 8
    Pointer to array start: 0xe9ef0
    Pointer to one-past-end: 0xe9f18

    Pointer to a[5]0xe9f18

    .....
    I can see that inside the function, the argument parray[] has somehow
    lost its 'arrayness', so the sizeof(parray) returns the size of the
    pointer. Outside the function, this works fine...am i missing some
    detail of syntax or is my whole philosophy crooked?

    cheers

    shaun
  • Rolf Magnus

    #2
    Re: templated pointer function for simple array

    shaun wrote:
    [color=blue]
    > Dear all,
    > I realized an error in a previous post, I reproduce it here because I'm
    > still not sure how to solve it:
    >
    > I want to make a templated function which points to one-past-the-end of
    > a simple array, to pass to a range constructor for a const vector.
    > Here is some demonstration code:
    >
    > #include <iostream>
    > using namespace std;
    > const double a[]={
    > 2.3,4.5,6.6,8.0 ,10.0
    > };
    >
    > template<class T> T * endof( T parray[]){[/color]

    This function takes a pointer to T.
    [color=blue]
    > int elementSize = sizeof(parray[0]);
    > int arraySize = sizeof(parray);[/color]

    This will give you the size of a pointer to T.
    [color=blue]
    > cout<<"Inside the function:"<<end l;
    > cout<<"Arraysiz e: "<<arraySiz e<<" Element size: "<<elementSize< <endl;
    > cout<<"Pointer to array start "<<parray<<endl ;
    > int numel= arraySize/elementSize;
    > return (parray+numel);
    > };
    >
    > int main (int argc, char * const argv[]) {
    > const double * pEnd=endof(a);
    > cout<<"Returned pointer: "<<pEnd<<endl<< endl;
    > cout<<"Outside the function: "<<endl;
    > cout<<"Array size: "<<sizeof(a );
    > cout<<" Element size: "<<sizeof(a[0])<<endl;
    > cout<<"Pointer to array start: "<<a<<endl;
    > int numElements=siz eof(a)/sizeof(a[0]);
    > const double * pEnd2= a+numElements;
    > cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
    > cout<<"Pointer to a[5]"<<&(a[5])<<endl;
    > return 0;
    > }
    >
    > ..but my templated function doesn't work at all, here is the output:
    >
    > Inside the function:
    > Arraysize: 4 Element size: 8
    > Pointer to array start 0xe9ef0
    > Returned pointer: 0xe9ef0
    >
    > Outside the function:
    > Array size: 40 Element size: 8
    > Pointer to array start: 0xe9ef0
    > Pointer to one-past-end: 0xe9f18
    >
    > Pointer to a[5]0xe9f18
    >
    > ....
    > I can see that inside the function, the argument parray[] has somehow
    > lost its 'arrayness', so the sizeof(parray) returns the size of the
    > pointer.[/color]

    Yes. It decayed into a pointer.
    [color=blue]
    > Outside the function, this works fine...am i missing some detail of syntax
    > or is my whole philosophy crooked?[/color]

    You can't pass arrays by value to a function. They will always get converted
    to pointers. You'd probably not want to pass the array anway, because that
    would copy the whole thing (passing by value means that the passed object
    gets copied into the argument of the funciton)
    What you can do is pass a reference:

    template<class T, int Size> T * endof( T (&parray)[Size]){
    return parray + Size;
    }



    Comment

    • Ben Radford

      #3
      Re: templated pointer function for simple array

      shaun wrote:[color=blue]
      > Dear all,
      > I realized an error in a previous post, I reproduce it here because I'm
      > still not sure how to solve it:
      >
      > I want to make a templated function which points to one-past-the-end of
      > a simple array, to pass to a range constructor for a const vector.
      > Here is some demonstration code:
      >
      > #include <iostream>
      > using namespace std;
      > const double a[]={
      > 2.3,4.5,6.6,8.0 ,10.0
      > };
      >
      > template<class T> T * endof( T parray[]){
      > int elementSize = sizeof(parray[0]);
      > int arraySize = sizeof(parray);
      > cout<<"Inside the function:"<<end l;
      > cout<<"Arraysiz e: "<<arraySiz e<<" Element size: "<<elementSize< <endl;
      > cout<<"Pointer to array start "<<parray<<endl ;
      > int numel= arraySize/elementSize;
      > return (parray+numel);
      > };
      >
      > int main (int argc, char * const argv[]) {
      > const double * pEnd=endof(a);
      > cout<<"Returned pointer: "<<pEnd<<endl<< endl;
      > cout<<"Outside the function: "<<endl;
      > cout<<"Array size: "<<sizeof(a );
      > cout<<" Element size: "<<sizeof(a[0])<<endl;
      > cout<<"Pointer to array start: "<<a<<endl;
      > int numElements=siz eof(a)/sizeof(a[0]);
      > const double * pEnd2= a+numElements;
      > cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
      > cout<<"Pointer to a[5]"<<&(a[5])<<endl;
      > return 0;
      > }
      >
      > ..but my templated function doesn't work at all, here is the output:
      >
      > Inside the function:
      > Arraysize: 4 Element size: 8
      > Pointer to array start 0xe9ef0
      > Returned pointer: 0xe9ef0
      >
      > Outside the function:
      > Array size: 40 Element size: 8
      > Pointer to array start: 0xe9ef0
      > Pointer to one-past-end: 0xe9f18
      >
      > Pointer to a[5]0xe9f18
      >
      > ....
      > I can see that inside the function, the argument parray[] has somehow
      > lost its 'arrayness', so the sizeof(parray) returns the size of the
      > pointer. Outside the function, this works fine...am i missing some
      > detail of syntax or is my whole philosophy crooked?
      >
      > cheers
      >
      > shaun[/color]

      Since you didn't specify a size for parray the compiler has no idea how
      big it is. So you can't expect sizeof(parray) to give the size of the
      array. Infact 'T parray[]' is just syntactic sugar for 'T* parray', so
      you are correct in that it is just taking the size of a pointer.
      Something like the following might work:

      #include <iostream>
      using namespace std;
      double a[5] = {
      2.3,4.5,6.6,8.0 ,10.0
      };

      template<class T, int N> T endof(T arr[N]) {
      return (arr + N);
      };

      int main (int argc, char * const argv[]) {
      double* pEnd = endof<double, 5>(a);

      cout<<"Returned pointer: "<<pEnd<<endl<< endl;
      cout<<"Outside the function: "<<endl;
      cout<<"Array size: "<<sizeof(a );
      cout<<" Element size: "<<sizeof(a[0])<<endl;
      cout<<"Pointer to array start: "<<a<<endl;
      int numElements=siz eof(a)/sizeof(a[0]);
      const double * pEnd2= a+numElements;
      cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
      cout<<"Pointer to a[5]"<<&(a[5])<<endl;
      return 0;
      }

      But so far I can only get it to work with explicit instansiation of the
      endof template and that kind of defeats the point of using it in the
      first place. Maybe someone with a better knowledge of the ins and outs
      of templates can help?

      Comment

      • Kai-Uwe Bux

        #4
        Re: templated pointer function for simple array

        shaun wrote:
        [color=blue]
        > Dear all,
        > I realized an error in a previous post, I reproduce it here because I'm
        > still not sure how to solve it:
        >
        > I want to make a templated function which points to one-past-the-end of
        > a simple array, to pass to a range constructor for a const vector.
        > Here is some demonstration code:
        >
        > #include <iostream>
        > using namespace std;
        > const double a[]={
        > 2.3,4.5,6.6,8.0 ,10.0
        > };
        >
        > template<class T> T * endof( T parray[]){
        > int elementSize = sizeof(parray[0]);
        > int arraySize = sizeof(parray);
        > cout<<"Inside the function:"<<end l;
        > cout<<"Arraysiz e: "<<arraySiz e<<" Element size: "<<elementSize< <endl;
        > cout<<"Pointer to array start "<<parray<<endl ;
        > int numel= arraySize/elementSize;
        > return (parray+numel);
        > };
        >
        > int main (int argc, char * const argv[]) {
        > const double * pEnd=endof(a);
        > cout<<"Returned pointer: "<<pEnd<<endl<< endl;
        > cout<<"Outside the function: "<<endl;
        > cout<<"Array size: "<<sizeof(a );
        > cout<<" Element size: "<<sizeof(a[0])<<endl;
        > cout<<"Pointer to array start: "<<a<<endl;
        > int numElements=siz eof(a)/sizeof(a[0]);
        > const double * pEnd2= a+numElements;
        > cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
        > cout<<"Pointer to a[5]"<<&(a[5])<<endl;
        > return 0;
        > }
        >
        > ..but my templated function doesn't work at all, here is the output:
        >[/color]

        Hm, ponder a bit about:


        template < typename T, unsigned long N >
        unsigned long length_of ( T const (& arg) [N] ) {
        return( N );
        }

        #include <iostream>

        const double a[] = { 2.3, 4.5, 6.6, 8.0, 10.0 };

        int main ( void ) {
        std::cout << length_of( a ) << '\n';
        }


        I am not sure if the standard guarantees that this code prints "5" because I
        am a little shaky about the precise meaning of the line

        const double a[] = { 2.3, 4.5, 6.6, 8.0, 10.0 };


        Best

        Kai-Uwe Bux

        Comment

        • shaun

          #5
          Re: templated pointer function for simple array

          OK, thanks all...after some experimenting, I came up with:

          #include <iostream>
          using namespace std;
          const double a[]={
          2.3,4.5,6.6,8.0 ,10.0
          };

          template<class T> T * endof( T parray[], long unsigned int s){
          return (parray+s/sizeof(parray[0]));
          };

          int main (int argc, char * const argv[]) {
          const double * pEnd=endof(a,si zeof(a));
          cout<<"Returned pointer: "<<pEnd<<endl<< endl;
          cout<<"Outside the function: "<<endl;
          cout<<"Array size: "<<sizeof(a );
          cout<<" Element size: "<<sizeof(a[0])<<endl;
          cout<<"Pointer to array start: "<<a<<endl;
          int numElements=siz eof(a)/sizeof(a[0]);
          const double * pEnd2= a+numElements;
          cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
          cout<<"Pointer to a[5]"<<&(a[5])<<endl;
          return 0;
          }


          .....

          This still allows me to add extra 'magic numbers' in my const array at
          the top of the file without changing any subsequent code. I'm not
          entirely happy that I have to pass both 'a' and 'sizeof(a)' since it
          feels like the 'sizeof' should be redundant, but I understand why it
          isn't.


          cheers

          shaun

          Comment

          • Rolf Magnus

            #6
            Re: templated pointer function for simple array

            shaun wrote:
            [color=blue]
            > OK, thanks all...after some experimenting, I came up with:
            >
            > #include <iostream>
            > using namespace std;
            > const double a[]={
            > 2.3,4.5,6.6,8.0 ,10.0
            > };
            >
            > template<class T> T * endof( T parray[], long unsigned int s){
            > return (parray+s/sizeof(parray[0]));
            > };
            >
            > int main (int argc, char * const argv[]) {
            > const double * pEnd=endof(a,si zeof(a));
            > cout<<"Returned pointer: "<<pEnd<<endl<< endl;
            > cout<<"Outside the function: "<<endl;
            > cout<<"Array size: "<<sizeof(a );
            > cout<<" Element size: "<<sizeof(a[0])<<endl;
            > cout<<"Pointer to array start: "<<a<<endl;
            > int numElements=siz eof(a)/sizeof(a[0]);
            > const double * pEnd2= a+numElements;
            > cout <<"Pointer to one-past-end: "<<pEnd2<<endl< <endl;
            > cout<<"Pointer to a[5]"<<&(a[5])<<endl;
            > return 0;
            > }
            >
            >
            > ....
            >
            > This still allows me to add extra 'magic numbers' in my const array at
            > the top of the file without changing any subsequent code. I'm not
            > entirely happy that I have to pass both 'a' and 'sizeof(a)' since it
            > feels like the 'sizeof' should be redundant, but I understand why it
            > isn't.[/color]

            What about my solution?

            template<class T, int Size> T * endof( T (&parray)[Size]){
            return parray + Size;
            }

            Comment

            • shaun roe

              #7
              Re: templated pointer function for simple array

              [color=blue][color=green]
              > > ....
              > >
              > > This still allows me to add extra 'magic numbers' in my const array at
              > > the top of the file without changing any subsequent code. I'm not
              > > entirely happy that I have to pass both 'a' and 'sizeof(a)' since it
              > > feels like the 'sizeof' should be redundant, but I understand why it
              > > isn't.[/color]
              >
              > What about my solution?
              >
              > template<class T, int Size> T * endof( T (&parray)[Size]){
              > return parray + Size;
              > }[/color]

              Maybe I didnt properly understand, but isnt Size the number of elements?
              If I change the const array at the top of the file, I would have to
              change all my calls to reflect the new number of members.

              Comment

              • Kai-Uwe Bux

                #8
                Re: templated pointer function for simple array

                shaun roe wrote:
                [color=blue]
                >[color=green][color=darkred]
                >> > ....
                >> >
                >> > This still allows me to add extra 'magic numbers' in my const array at
                >> > the top of the file without changing any subsequent code. I'm not
                >> > entirely happy that I have to pass both 'a' and 'sizeof(a)' since it
                >> > feels like the 'sizeof' should be redundant, but I understand why it
                >> > isn't.[/color]
                >>
                >> What about my solution?
                >>
                >> template<class T, int Size> T * endof( T (&parray)[Size]){
                >> return parray + Size;
                >> }[/color]
                >
                > Maybe I didnt properly understand, but isnt Size the number of elements?
                > If I change the const array at the top of the file, I would have to
                > change all my calls to reflect the new number of members.[/color]


                In the syntax

                template<class T, int Size> T * endof( T (&parray)[Size]){
                return parray + Size;
                }

                the identifier "Size" is a template parameter. You will not need to change
                anything. Try the following on your compiler, which uses the same trick:

                template < typename T, unsigned long N >
                unsigned long length_of ( T const (& arg) [N] ) {
                return( N );
                }

                #include <iostream>

                const double a[] = { 2.3, 4.5, 6.6, 8.0, 10.0 };

                int main ( void ) {
                std::cout << length_of( a ) << '\n';
                }


                This should print 5. Once you change it to

                template < typename T, unsigned long N >
                unsigned long length_of ( T const (& arg) [N] ) {
                return( N );
                }

                #include <iostream>

                const double a[] = { 2.3, 4.5, 6.6, 8.0 };

                int main ( void ) {
                std::cout << length_of( a ) << '\n';
                }

                it will print 4. As you can see, no change to the template is needed. The
                compiler automatically deduces the correct value for Size (or N in my
                version) upon initialization of the template at the point where it is
                called.


                Best

                Kai-Uwe Bux

                Comment

                • Rolf Magnus

                  #9
                  Re: templated pointer function for simple array

                  shaun roe wrote:
                  [color=blue]
                  >[color=green][color=darkred]
                  >> > ....
                  >> >
                  >> > This still allows me to add extra 'magic numbers' in my const array at
                  >> > the top of the file without changing any subsequent code. I'm not
                  >> > entirely happy that I have to pass both 'a' and 'sizeof(a)' since it
                  >> > feels like the 'sizeof' should be redundant, but I understand why it
                  >> > isn't.[/color]
                  >>
                  >> What about my solution?
                  >>
                  >> template<class T, int Size> T * endof( T (&parray)[Size]){
                  >> return parray + Size;
                  >> }[/color]
                  >
                  > Maybe I didnt properly understand, but isnt Size the number of elements?[/color]

                  Yes.
                  [color=blue]
                  > If I change the const array at the top of the file, I would have to
                  > change all my calls to reflect the new number of members.[/color]

                  No, you won't. You just call it like in your original posting. The number of
                  elements is automatically deduced.

                  Comment

                  • shaun roe

                    #10
                    Re: templated pointer function for simple array

                    [color=blue]
                    >
                    > In the syntax
                    >
                    > template<class T, int Size> T * endof( T (&parray)[Size]){
                    > return parray + Size;
                    > }
                    >
                    > the identifier "Size" is a template parameter. You will not need to change
                    > anything. Try the following on your compiler, which uses the same trick:
                    >[/color]

                    EXCELLENT! exactly what I wanted, many thanks!

                    shaun

                    Comment

                    Working...