Since 4/26/2012 4:17:25 PM, chris.uppal has written 10 articles and participated in 3960 conversations. chris.uppal signature: chris.uppal
chris.uppal's articles:
Items(10) /1
[OT] HTML, XHTML, ... ?1537 (11/25/2006 1:32:06 PM) comp.lang.java.programmer Apologies for an off-topic question. I'm hoping to collect a few opinions about current best-practise for the flavour of HTML to use. XHTML ? HTML 4.0 transitional ? HTML 4.0 strict ? Or... ? I'm not aski... Chris
JVMTI and releasing a jvmtiEnv056 (8/25/2006 3:54:28 PM) comp.lang.java.programmer Am I missing something ? I'm writing my first ever JVMTI agent; in the Agent_OnLoad() function in my DLL I create myself a jvmtiEnv, so I assume I'm expected to release it again in Agent_OnUnload() (or somewhe... Chris
What in Hell are Sun playing at with learning JNI ?1947 (6/26/2006 12:16:13 PM) comp.lang.java.programmer Anyone know what Sun is doing with JNI reference material ? There used to be a valuable JNI trail in the Java Tutorial, but it's been unreachable for months and is no longer linked to from the main tutorial pa... Chris
Most recent C and C++ standards documents ?1447 (5/14/2006 9:27:23 AM) comp.programming Hi, Can anyone tell me what most recent ansi/iso/iec standards documents for C and C++ are please ? The one I have for C (which I gather has been superseeded) describes itself as "ANSI/ISO 9899-1990 (revision... Chris
And yet another generics question1145 (11/2/2005 3:30:23 PM) comp.lang.java.programmer Can anyone explain to me why: class Test { static X x() { return null; } // line 3 } provokes the compiler to issue an error message: Test.java:3: non-static class X cannot be ref... Chris
Varargs434 (1/19/2005 4:00:11 PM) comp.lang.java.programmer Just for academic interest (so far...): Given this rather silly example: void dumpEmAll(Object... all) { for (Object each : all) System.out.println(each); } and given an array... Chris
Re: JLS3 online yet ?063 (1/5/2005 12:04:13 PM) comp.lang.java.programmer I wrote: > Does anyone know if the third edition of the JLS is available online yet > ? I know the book's out as physical paper Come to think of it, the paper book I saw may have been the "Java Programming L... Chris
JLS3 online yet ?246 (1/5/2005 11:51:08 AM) comp.lang.java.programmer Does anyone know if the third edition of the JLS is available online yet ? I know the book's out as physical paper, but I don't want that (not even if it were free). -- chris ... Chris
Volatile methods !048 (10/14/2004 11:02:09 AM) comp.lang.java.programmer Here's something that I've just noticed: Try this on a 1.5 Java: ============= import java.lang.reflect.Method; public class Test { public static void main(String[] args) { Class sbc = java.lang.StringB... Chris
Converting Text File To Rectangles1423 (2/12/2013 1:51:10 AM) comp.lang.java.programmer I have a save and load method for certain rectangles I need for a game. Say the user wants to save a map. The outputted map would look like this:
50 250 50 50
50 350 50 50
50 400 50 50
50 500 50 50
150... zfollette(2)
abbreviated generic syntax1819 (2/18/2013 4:26:43 AM) comp.lang.java.programmer In generics in Java 1.7 you can abbreviate
ArrayList a = new ArrayList( 100 );
as
ArrayList a = new ArrayList a = new ArrayList( 100 );
If not, why the <>?
--
Roedy Green Canadian Mind Prod... see_website(4858)
exec problem is JDK 1.7.0_218516 (4/16/2013 10:48:10 PM) comp.lang.java.programmer This code no longer works in JDK 1.7.0_21
Process p = exec( "F:\\Program Files (x86)\\netload\\netload.exe",
true/* wait */ );
I thought perhaps it wanted some embedded quotes, but that does not
work e... see_website(4858)
> Sandboxed power == More secure???259 (4/16/2013 11:45:12 PM) comp.lang.java.programmer Perhaps the most significant change will be that, in the default
setting, sites will not be able to force the small programs known as
Java applets to run in the browser unless they have been digitally
sig... maher_rjSPAMLESS(30)
A small exercise218 (4/20/2013 1:11:58 PM) comp.lang.java.programmer Try to predict the behavior of the execution or compilation
of the following code!
public class Main
{ final int a; final int b;
Main(){ this.a = 0; Main.this.b = 0; }
public static void Main( fi... ram(2828)
depth first search1415 (4/28/2013 4:46:28 AM) comp.lang.java.programmer I am given method signature that takes a square 2D Character Array (a matri=
x) that represents a board of a game called Go. The board has black pieces=
represented by a 'B' white pieces represented by a 'W... willmann817(17)
Using JAVA inside VBA83 (5/11/2013 4:31:08 PM) comp.lang.java.programmer Hello,
I have a compiled commercial jar that I want to use in VBA, something like :
Dim javaob As Object
Set javaob = CreateObject("MyJavaAPIObject")
result = javaob.doSomething()
Unforunately, I can't c... gbenrais1(4)
lectures about "programming methodology"493 (5/5/2013 6:37:26 PM) comp.lang.java.programmer I decided to watch lecture videos from the Stanford
University about �programming methodology�, which actually
teach Java.
I was somewhat surprised that the lectures of the renowned
Stanford uni... ram(2828)