Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 01-26-2004, 07:18 PM   #1 (permalink)
Insane
 
Location: Chicago
[java] A list of all the functions in Java

I was told there is a list somewhere out in the web that has all the things java can do. All the pre-installed stuff that you can use when you program with Java, I am pretty new at this.
__________________
Jesus was a ruffies victim!

Dan 3:20
ToolBag is offline  
Old 01-26-2004, 07:53 PM   #2 (permalink)
Banned
 
Location: 'bout 2 feet from my iMac
http://java.sun.com/j2se/1.4.1/docs/api/

treasure that link ALWAYS.
you can also get to it via java.sun.com
cheerios is offline  
Old 01-26-2004, 08:36 PM   #3 (permalink)
Insane
 
Location: Chicago
Holy Spanks!!

Thanks a bunch, I could spend days looking through that thing
__________________
Jesus was a ruffies victim!

Dan 3:20
ToolBag is offline  
Old 01-26-2004, 10:02 PM   #4 (permalink)
Banned
 
Location: shittown, CA
some biggies to hit up:

java.util.*
java.lang.*
java.io.*
java.math.*
juanvaldes is offline  
Old 01-27-2004, 11:45 AM   #5 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
Quote:
Originally posted by cheerios
http://java.sun.com/j2se/1.4.1/docs/api/
Might want to keep in mind that its for version 1.4.1 of your java. The latest is 1.5. It really depends on what version you have, some method in certain classes might not work anymore, some might not even exist.
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war
feelgood is offline  
Old 01-27-2004, 11:51 AM   #6 (permalink)
Banned
 
Location: 'bout 2 feet from my iMac
when did 1.5 come out?!?! I keep 1.4.1 bookmarked 'cuz that's whta i had till recently (apple's always a bit behind on these things). but most everything you code should function. I've never found something that hasn't worked yet...
thx though!

edit: all sun has up is 1.4.2 I think you're a bit confused... 1.4.2 should be the latest version & I know they're working on 2.0... but it shouldn't be out for quite awhile.

Last edited by cheerios; 01-27-2004 at 11:53 AM..
cheerios is offline  
Old 01-28-2004, 04:43 AM   #7 (permalink)
Upright
 
Location: Tatoine
Java 1.5 is an alpha early access. http://java.sun.com/developer/earlyA...2sdk150_alpha/

A snippet of new features as taken from http://java.sun.com/features/2003/05/bloch_qa.html. :
Generics - Provides compile-time type safety for collections and eliminates the drudgery of casting.


Enhanced for loop - Eliminates the drudgery and error-proneness of iterators.


Autoboxing/unboxing - Eliminates the drudgery of manual conversion between primitive types (such as int) and wrapper types (such as Integer).


Typesafe enums - Provides all the well-known benefits of the Typesafe Enum pattern (Effective Java, Item 21) without the verbosity and the error-proneness.


Static import - Lets you avoid qualifying static members with class names, without the shortcomings of the Constant Interface antipattern (Effective Java, Item 17).


Metadata - Lets you avoid writing boilerplate code, by enabling tools to generate it from annotations in the source code. This leads to a "declarative" programming style where the programmer says what should be done and tools emit the code to do it.
blandarfleck is offline  
 

Tags
functions, java, list


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 02:38 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73