Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Java's Unsafe class  (Read 4141 times)
0 Members and 1 Guest are viewing this topic.
Offline xfactor973

Senior Newbie




Java games rock!


« Posted 2003-08-14 02:02:51 »

Anyone have experience using sun.misc.Unsafe ?  I tried using it today and it's giving an error when i run it.  

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
import sun.misc.*;

public class UnsafeTester {
  private static final Unsafe unsafe = Unsafe.getUnsafe();
  public static void main(String[] args) {
    long ptr = unsafe.allocateMemory(512);
    try{
      unsafe.putChar(ptr,'a');
      unsafe.putChar(ptr,'b');
      System.out.println("Unsafe: " + unsafe.toString());
    }
    finally{
      unsafe.freeMemory(ptr);
    }
  }
}

java.lang.ExceptionInInitializerError
Caused by: java.lang.SecurityException: Unsafe
      at sun.misc.Unsafe.getUnsafe(Unsafe.java:68)
      at garbage.UnsafeTester.<clinit>(UnsafeTester.java:8)
Exception in thread "main"

I'm not sure exactly how I should go about tackling this one so any help would be great.   Wink
Offline AndersDahlberg

Junior Member





« Reply #1 - Posted 2003-08-14 02:05:33 »

Well, don't use it Grin

There was a bug once upon a time Wink when you could actually use it to wrec havoc (first beta1.4.0 or something like that) - they fixed that quite fast Smiley
Offline GergisKhan

Junior Member




&quot;C8 H10 N4 O2&quot;


« Reply #2 - Posted 2003-08-14 02:35:38 »

Ummmm.... what is this class?

why does it curiously remind me of the structs discussion that was occurring in another thread somewhere?

And for future reference, where can I get information about the sun.misc.* classes?

gK

"Go.  Teach them not to mess with us."
          -- Cao Cao, Dynasty Warriors 3
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline tortoise

Junior Member




<3 Shmups


« Reply #3 - Posted 2003-08-14 02:49:23 »

Whatever it is, I suspect it is unsafe to use Smiley

You're really not supposed to use any of the sun.* classes for real use. They are subject to change at any moment, and are only available on Sun JVMs.
Offline socketrider

JGO Visitor



Java games rock!


« Reply #4 - Posted 2003-08-14 12:25:03 »

Check this page: http://www.jguru.com/faq/view.jsp?EID=448031

Cheers
Offline xfactor973

Senior Newbie




Java games rock!


« Reply #5 - Posted 2003-08-14 13:12:54 »

Thanks for your help.  The only reason I was curious about that Unsafe class was my friend wanted to make a stringBuffer class using JNI and it turned out being alot slower than even your normal stringbuffer.  I'm guessing the JNI calls are expensive.  so we went hunting in the nio classes and found no native methods and that lead to the Unsafe class.  Only problem is that security exception that i'm getting.  Guess it's unusable at this point.   :-/
Online princec
« League of Dukes »

JGO Kernel


Medals: 196
Projects: 3


Eh? Who? What? ... Me?


« Reply #6 - Posted 2003-08-14 13:32:56 »

You should have no need whatsoever to use Unsafe.
Got performance problems? You've written the code wrong. Time to run with the -Xprof flag methinks!

Cas Smiley

Offline xfactor973

Senior Newbie




Java games rock!


« Reply #7 - Posted 2003-08-14 13:39:16 »

yeah this is true.  It was just something i was toying around with.   Grin
Offline xfactor973

Senior Newbie




Java games rock!


« Reply #8 - Posted 2003-08-22 13:57:26 »

When I allocate memory with the Unsafe class what exactly is it doing?  I'm really just experimenting with the class.  And the other thing is that when i call unsafe.addressSize() it always returns 4 for some odd reason.  Anyone know how this class works? Huh
Offline abies

Senior Member





« Reply #9 - Posted 2003-08-22 14:52:14 »

Quote
 And the other thing is that when i call unsafe.addressSize() it always returns 4 for some odd reason.


I suppose that it returns size of native platform pointer in bytes. So on 64-bit system you will probably get 8 as a return.

Artur Biesiadowski
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline xfactor973

Senior Newbie




Java games rock!


« Reply #10 - Posted 2003-08-23 15:46:46 »

Good thinking.  Thanks for the help
Offline Jeff

JGO Coder




Got any cats?


« Reply #11 - Posted 2003-09-06 00:23:22 »

Unsafe is the underpinning to Native Byte Buffers

Thats really where you want to hit this.

JK

Got a question about Java and game programming?  Just new to the Java Game Development Community?  Try my FAQ.  Its likely you'll learn something!

http://wiki.java.net/bin/view/Games/JeffFAQ
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (82 views)
2013-05-17 21:29:12

alaslipknot (91 views)
2013-05-16 21:24:48

gouessej (122 views)
2013-05-16 00:53:38

gouessej (114 views)
2013-05-16 00:17:58

theagentd (126 views)
2013-05-15 15:01:13

theagentd (113 views)
2013-05-15 15:00:54

StreetDoggy (158 views)
2013-05-14 15:56:26

kutucuk (180 views)
2013-05-12 17:10:36

kutucuk (180 views)
2013-05-12 15:36:09

UnluckyDevil (187 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.134 seconds with 21 queries.