Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. CArray<double,double*> pointer ??

CArray<double,double*> pointer ??

Scheduled Pinned Locked Moved C / C++ / MFC
question
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V Offline
    V Offline
    Vaclav
    wrote on last edited by
    #1

    I cannot figure out the syntax of passing CArray pointer to a function. Can anybody point me to a source of info? Thanks Vaclav

    M B 2 Replies Last reply
    0
    • V Vaclav

      I cannot figure out the syntax of passing CArray pointer to a function. Can anybody point me to a source of info? Thanks Vaclav

      M Offline
      M Offline
      Michael Dunn
      wrote on last edited by
      #2

      The * goes after the type name (doesn't matter if it's a template class or not, the rule is the same): CArray<double,double*>* --Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ Shots do not hurt other players... yet

      V 1 Reply Last reply
      0
      • V Vaclav

        I cannot figure out the syntax of passing CArray pointer to a function. Can anybody point me to a source of info? Thanks Vaclav

        B Offline
        B Offline
        Bob Stanneveld
        wrote on last edited by
        #3

        Hello, In addition to what Micheal Dunn said, typedefs make your life more easy when you use templates extensively:

        typedef CArray<double, double> CArrayDouble;
        CArrayDouble* pArrayDouble = new CArrayDouble();

        Hope this helps. :-D Behind every great black man...             ... is the police. - Conspiracy brother Blog[^]

        1 Reply Last reply
        0
        • M Michael Dunn

          The * goes after the type name (doesn't matter if it's a template class or not, the rule is the same): CArray<double,double*>* --Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ Shots do not hurt other players... yet

          V Offline
          V Offline
          Vaclav
          wrote on last edited by
          #4

          Thanks, I'll give a try. Vaclav

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups