Results 1 to 4 of 4

Thread: [Resolved] /** ?

  1. #1

    Thread Starter
    l33t! MrPolite's Avatar
    Join Date
    Sep 2001
    Posts
    4,428

    [Resolved] /** ?

    what is the /** comment? what's the difference between that and /* ?
    Last edited by MrPolite; Jul 4th, 2003 at 02:07 PM.
    rate my posts if they help ya!
    Extract thumbnail without reading the whole image file: (C# - VB)
    Apply texture to bitmaps: (C# - VB)
    Extended console library: (VB)
    Save JPEG with a certain quality (image compression): (C# - VB )
    VB.NET to C# conversion tips!!

  2. #2
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    Take a look here

    Those documents are generated by a tool called javadoc. It comes with the SDK. The /** comment indicates to the javadoc tool that it should use that comment in the html document it generates.

    Look around sun's site for exactly how to use it.

    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  3. #3
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    /** is generally used for documentation comments. Comments about who wrote the code what the app does, etc...

    /* and // are generally used as regular comments, such as what a specific line of code does.

    Example
    Code:
    /**
      * Application Name: MyApp
      * Designed By: Me
      * 12/12/2000
      */
    
    system.out.println("Hello World") // prints Hello World to the screen
    
    /* The following line prints Hello World to the screen */
    system.out.println("Hello World")
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

  4. #4

    Thread Starter
    l33t! MrPolite's Avatar
    Join Date
    Sep 2001
    Posts
    4,428
    Thanks guys, it's clear now
    rate my posts if they help ya!
    Extract thumbnail without reading the whole image file: (C# - VB)
    Apply texture to bitmaps: (C# - VB)
    Extended console library: (VB)
    Save JPEG with a certain quality (image compression): (C# - VB )
    VB.NET to C# conversion tips!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width