Results 1 to 3 of 3
- 09-17-2009, 08:19 PM #1
Senior Member
- Join Date
- Aug 2009
- Posts
- 294
- Rep Power
- 0
Cannot find symbol variable pD! I cant fix it!!!
I know, I have had this before! But now for some reason I cant make a variable static!
Heres My first code, the code that runs first:
and heres my other code, the one not working:PHP Code:package src; import some poopy modules..; public class run{ public static void main(String args[]){ double pD = 0.0; try{ GameFrame window = new GameFrame(); } catch (Exception e){ e.printStackTrace(); } } }
Now the problem is, I cant make the pD value static by saying static double pD cause I doesnt work!PHP Code:package src; import src.run; public class Crypt { private static String encrypt(String string){ blah blah blah things... displayProgress(x/Double.valueOf(list.length)); blahblahblah more things running.. Unimportant. } private static void displayProgress(double value){ run.pD = value*100; }
So how do I make the displayProgress be able to find the pD value?
For me its impossible!
- 09-17-2009, 08:31 PM #2
Senior Member
- Join Date
- Aug 2009
- Posts
- 294
- Rep Power
- 0
nvm trash this!
Im making a new thread with more explaining and just one simple question.
- 09-17-2009, 08:32 PM #3
Java Code:package src; import some poopy modules..; public class run{ public static double pD; public static void main(String args[]){ pD = 0.0; try{ GameFrame window = new GameFrame(); } catch (Exception e){ e.printStackTrace(); } } }My Hobby Project: LegacyClone
Similar Threads
-
Cannot find symbol variable yourScore
By Addez in forum New To JavaReplies: 4Last Post: 08-17-2009, 10:48 PM -
cannot find symbol
By GabWit in forum New To JavaReplies: 3Last Post: 01-25-2009, 12:13 AM -
cannot find symbol symbol :constructor Error. Please help! =(
By KalEl in forum New To JavaReplies: 9Last Post: 10-18-2008, 08:26 PM -
cannot find symbol symbol : class Item location: package platypos.services.order
By officialhopsof in forum New To JavaReplies: 3Last Post: 05-01-2008, 08:30 AM -
Error: cannot find symbol
By silvia in forum New To JavaReplies: 1Last Post: 08-07-2007, 05:39 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks