|
-
Jul 4th, 2003, 03:11 AM
#1
[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!!
-
Jul 4th, 2003, 11:08 AM
#2
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
-
Jul 4th, 2003, 11:09 AM
#3
Frenzied Member
/** 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
-
Jul 4th, 2003, 02:07 PM
#4
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|