User Ziggy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:38:45Z http://stackoverflow.com/feeds/user/29182 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/274462/how-do-i-make-for-loops-run-side-by-side 2 How do I make for loops run side by side? Ziggy 2008-11-08T06:45:55Z 2009-08-25T08:04:32Z <p>I have been working on a childish little program: there are a bunch of little circles on the screen, of different colors and sizes. When a larger circle encounters a smaller circle it eats the smaller circle, and when a circle has eaten enough other circles it reproduces. It's kind of neat!</p> <p>However, the way I have it implemented, the process of detecting nearby circles and checking them for edibility is done with a for loop that cycles through the entire living population of circles... which takes longer and longer as the population tends to spike into the 3000 before it starts to drop. The process doesn't slow my computer down, I can go off and play Dawn of War or whatever and there isn't any slow down: it's just the process of checking every circle to see if it has collided with every other circle...</p> <p>So what occurred to me, is that I could try to separate the application window into four quadrants, and have the circles in the quadrants do their checks simultaneously, since they would have almost no chance of interfering with each other: or something to that effect!</p> <p>My question, then, is: how does one make for loops that run side by side? In Java, say.</p> http://stackoverflow.com/questions/588623/self-referential-struct-definition 4 self referential struct definition? Ziggy 2009-02-26T00:47:05Z 2009-07-29T19:13:40Z <p>Hi</p> <p>I haven't been writing C for very long, and so I'm not sure about how I should go about doing these sorts of recursive things... I would like each cell to contain another cell, but I get an error along the lines of "field 'child' has incomplete type". What's up?</p> <pre><code>typedef struct Cell { bool isParent; Cell child; } Cell; </code></pre> <p>Thanks,</p> <p>z.</p> <p>PS (Ziggy is also clearly confused by typedef: he has typedefed <code>Cell</code> to <code>Cell</code> and wonders why?)</p> http://stackoverflow.com/questions/402514/why-might-one-also-use-a-blank-constructor 0 Why might one also use a blank constructor? Ziggy 2008-12-31T08:10:03Z 2009-06-23T16:30:04Z <p>I was reading some Java recently and came across something (an idiom?) new to me: in the program, classes with multiple constructors would also always include a blank constructor. For example: </p> <pre><code>public class Genotype { private boolean bits[]; private int rating; private int length; private Random random; public Genotype() { // &lt;= THIS is the bandit, this one right here random = new Random(); } /* creates a Random genetoype */ public Genotype(int length, Random r) { random = r; this.length = length; bits = new boolean[length]; for(int i=0;i&lt;length;i++) { bits[i] =random.nextBoolean(); } } /* copy constructor */ public Genotype(Genotype g,Random r) { random = r; bits = new boolean[g.length]; rating = g.rating; length = g.length; for(int i=0;i&lt;length;i++) { bits[i] = g.bits[i]; } } } </code></pre> <p>The first constructor doesn't seem to be a "real" constructor, it seems as though in every case one of the other constructors will be used. So why is that constructor defined at all?</p> http://stackoverflow.com/questions/989522/handling-graphics-in-oop-style 1 Handling graphics in OOP style Ziggy 2009-06-12T23:43:37Z 2009-06-13T03:39:14Z <p>Hi</p> <p>In an object-oriented programming style does how does one tend to handle graphics? Should each object contain its own graphics information? How does that information get displayed? </p> <p>My experience with making graphical programs is limited, but I have tended to have the objects and the graphics be only loosely related. For instance, if I implemented a chess game I would tend to have a graphics object responsible for making the board, getting images for the chess pieces, loading them into a hash attached to names such as White_Queen, and then updating the screen whenever things changed. The changes themselves would be passed to the main game loop from the objects, and then to the graphics object. The piece objects would contain the name of the piece graphics they were attached to, in a string, but wouldn't have any graphics information in them. Is this OOP? Is it good OOP?</p> <p>What I am thinking about now is that since the project I am working on involves procedurally generated graphics (very, very simple ones), I could have the procedures stored in the objects and get the graphics object to read the procedures from objects passed to it. Would this be OOP? Would it be good?</p> <p>In the real world, as I have come to know it, things do not contain graphics. Things contain properties and my brain interprets them. Blind people's brains and the brains of hawks all interpret different objects differently. Is this OOP? Should I try to do it that way?</p> <p>Hey, thanks for your help as usual!</p> <p>z.</p> <p>PS I am writing code in C for the nintendo DS. I'm drawing graphics by coloring pixels individually!</p> http://stackoverflow.com/questions/958671/what-is-a-private-header-in-c 6 what is a "private header" in c Ziggy 2009-06-06T00:33:09Z 2009-06-06T03:41:23Z <p>Hi</p> <p>I've been learning c recently, and in one of my textbooks I found a reference to a file with the extension .r (dot r). Now, as you can imagine, googling "r" or "file extension r" is not productive, so I wonder if you could help me out!</p> <p>It appears in the following code block</p> <pre><code>#include "new.r" static const struct Class _String = { sizeof(struct String), String_ctor, String_dtor, String_clone, String_differ }; const void * String = &amp; _String; </code></pre> <p>The author mentions that it is a "private header", but I wish he could have been more clear as to what exactly that is... </p> <p>Bonus points if you also recognize what book this code snippet is from! As always, thanks for your help!</p> <p>z.</p> http://stackoverflow.com/questions/869976/what-is-a-programming-language 3 what is a programming language? Ziggy 2009-05-15T17:39:31Z 2009-05-15T18:57:17Z <p>Hi</p> <p>Wikipedia says:</p> <blockquote> <p>A programming language is a machine-readable artificial language designed to express computations that can be performed by a machine, particularly a computer. Programming languages can be used to create programs that specify the behavior of a machine, to express algorithms precisely, or as a mode of human communication.</p> </blockquote> <p>But is this true? It occurred to me in the shower this morning that a programming language might just be a set of conventions, something that both a human and an appropriately arranged compiler can interpret. If that's the case, then isn't it this definition of a programming language misleading? If that isn't the case, then what's the difference between a compiler and the language it compiles?</p> <p>Thanks!</p> <p>z.</p> http://stackoverflow.com/questions/682719/what-does-the-9th-commandment-mean 2 What does the 9th commandment mean? Ziggy 2009-03-25T17:51:23Z 2009-03-26T03:27:25Z <p>In <a href="http://www.lysator.liu.se/c/ten-commandments.html" rel="nofollow">The Ten Commandments for C Programmers</a>, what is your interpretation of the <a href="http://www.lysator.liu.se/c/ten-commandments.html" rel="nofollow">9th commandment</a>?</p> <h3>The 9th commandment:</h3> <blockquote> <p>Thy external identifiers shall be unique in the first six characters, though this harsh discipline be irksome and the years of its necessity stretch before thee seemingly without end, lest thou tear thy hair out and go mad on that fateful day when thou desirest to make thy program run on an old system.</p> </blockquote> <p>Exactly what is this all about?</p> http://stackoverflow.com/questions/640515/how-badly-can-c-crash 4 how badly can c crash? Ziggy 2009-03-12T21:16:51Z 2009-03-17T16:36:21Z <p>Hi</p> <p>I have often heard that C can crash spectacularly. Recently I got my first taste of this when a function I expected to return a string instead returned little happy faces. Since then I have been being more careful with initializing pointers and mallocing memory for arrays. Still, though, I have trouble believing that a program could crash THAT badly...</p> <p>I guess it would depend on the scope of the program though? I mean, if a bug in a program that dealt with your fan copied happy faces into some important space in memory...?</p> <p>My question is, how much myth is there in the world of spectacular C crashes? Can I get some concrete examples of dangerous things that one ought to avoid?</p> <p>z.</p> http://stackoverflow.com/questions/218384/what-is-a-null-pointer-exception 15 What is a Null Pointer Exception? Ziggy 2008-10-20T13:18:09Z 2009-03-12T23:17:11Z <p>What are null pointer exceptions and what causes them in general?</p> http://stackoverflow.com/questions/628825/what-is-it-called-when-a-program-talks-with-other-programs-or-other-computers 4 what is it called when a program talks with other programs or other computers Ziggy 2009-03-10T03:14:55Z 2009-03-10T12:09:01Z <p>Hi</p> <p>As a true beginner, one often finds that the barrier to further knowledge is not knowing what to google.</p> <p>I've made programs like pong and a sudoku solver, simple things. These days I would like to work on something more like tabslock or make a multiplayer pong, or at least start thinking about what that would involve. </p> <p>So what exactly is it called when programs cause other programs to do this or that, or when a program talks with a copy of itself on another computer somewhere else in this vast internet.</p> <p>z.</p> http://stackoverflow.com/questions/377846/writing-a-gif-file-in-java 1 Writing a GIF file in Java Ziggy 2008-12-18T13:33:51Z 2009-03-03T22:58:42Z <p>So I have this GIF file on my desktop (it's a 52 card deck of poker cards). I have been working on a program that cuts it up into little acm.graphics.GImages of each card. Now, however, I want to write those GImages or pixel arrays to a file so that I can use them later. I thought it would be as straight forward as writing .txt files, but a couple of Google searches later I am more confused than before.</p> <p>So how do I go about making .gif files out of pixel arrays or GImages (I've got loads of both)?</p> http://stackoverflow.com/questions/277148/what-is-a-development-framework-what-is-an-ide 1 What is a development framework? What is an IDE? Ziggy 2008-11-10T05:52:28Z 2009-03-03T22:57:22Z <p>When I started programming I was using Ruby and the colorful little notepad that came with it. Since I started learning Java I've been using Eclipse, which is apparently an IDE. Now I've read a bit about this Mono on Reddit, but I don't think I understand exactly what it is. The website says it is a development framework: is that just another word for IDE? I'm a true beginner who wants to work in a number of languages, from Java and Ruby to z80 and ARM9... is there an IDE or development framework that might be best for little me?</p> http://stackoverflow.com/questions/368260/what-does-it-mean-when-a-bug-doesnt-crash-the-program 0 what does it mean when a bug doesn't crash the program Ziggy 2008-12-15T12:45:28Z 2009-03-03T22:54:06Z <p>The title says it all. No dire need to know, I'm just curious. Sometimes Eclipse comes up saying "hey you should debug this line!!!" but doesn't actually close the program. I can then continue to play big two, and even go through the same events that caused the error the first time and get another error box to pop up!</p> <p>The bug is simple, I'll fix it, I just want to know why some bugs are terminal and some are not? What's the difference?</p> http://stackoverflow.com/questions/343435/what-is-this-java-awt-event-error 1 What is this java.awt.event error? Ziggy 2008-12-05T10:31:28Z 2009-03-03T22:53:41Z <h3>ANSWER:</h3> <p>If you ever see these lines and are mistified like I was, here's what they mean.</p> <p><code>Thread[AWT-EventQueue-0] (Suspended (exception NullPointerException))</code></p> <p><code>EventDispatchTread.run() line: not available [local variables unavailable]</code></p> <p>It's not that the variables are unavailable because they are lurking behind a shroud of mystery in a library somewhere dank. No no, they just went out of scope! It's still your fault, you still have to find the null, and no you can't blame the library. Important lesson!</p> <h3>QUESTION:</h3> <p>One of the most frustrating things for me, as a beginner is libraries! It's a love/hate relationship: On the one hand they let me do things I wouldn't normally understand how to do with the code that I do understand, on the other hand because I don't completely understand them, they sometimes throw a wrench in code that is otherwise working fine! It's because I don't understand the errors that can occur when using these libraries, because I didn't write them, and because eclipse doesn't give me a great deal to go with when one of imports starts acting up...</p> <p>So here's the problem: I've been working with java.awt.event to handle a bunch of JButtons on the screen for this and that. I get an error when I use one of the buttons I've made. The error is:</p> <p><code>Thread[AWT-EventQueue-0] (Suspended (exception NullPointerException))</code></p> <p><code>EventDispatchTread.run() line: not available [local variables unavailable]</code></p> <p>What does this mean? What could be causing it? I'm embarrassed to post code, but if you can stand to try to decipher my terrible style, here is the method that seems to cause this error to be thrown.</p> <pre><code>public void actionPerformed(ActionEvent e) { String cmd = e.getActionCommand(); String name; code... if(cmd.equals("Play")) { name = field.getText(); card = getCard(name); if(card != null) { if(rules.zoneHasCard(card, rules.hand)) { display.updateStatusMessage(rules.play(card)); field.setText(""); display.updateHand(rules.zoneList("hand")); display.updateDiscard(rules.zoneList("Discard")); // This is the error here! The discard Zone was empty! } else { field.setText("You do not have " + card.getName()); field.selectAll(); } } else { field.setText("That cardname is unused"); field.selectAll(); } } } </code></pre> http://stackoverflow.com/questions/340562/method-visibility-between-classes-in-java 1 method visibility between classes in java Ziggy 2008-12-04T13:25:01Z 2009-03-03T22:53:06Z <p>In Java (And in general) is there a way to make a class so public that it's methods etc... are accessible from little classes all around that don't even instantiate it? Ha, what I mean is... If I have a daddy class that has a method <code>draw()</code> and it instantiates a baby class called Hand and one called Deck, and then deck instantiates a babier class called Card that has a method <code>play()</code>, is there a way for <code>Play()</code> to then call <code>Draw()</code> from the daddy class?</p> <p>The idea here is that... the daddy class says "Deck! play(card)!" and then deck says "Card! play()!" and then play turns around and says "Hey daddy! Draw()!"</p> <p>PS the idea is that... in a CCG every card has a "play()" method that is different but they are all essentially called in the same way. The opportunity to play the card comes around, and you call play on it. But the card doesn't do anything internal to itself: no no, it calls a number of methods from the rules of the game, which is has visibility to. So, like, a card in MTG that says "draw one card. Deal one damage to target player." is calling draw(player, 1) and dealDamage(player, 1) which are presumably not in the card itself... since they effect variables presumably instantiated by the players when they started the game and agreed on life totals and rules such as what "draw" means?</p> <p>(meta-question: as usual, could someone please rename this question so that it reflects what I am asking... being a beginner is so frustrating!)</p> http://stackoverflow.com/questions/304576/can-a-variable-have-multiple-values 1 can a variable have multiple values Ziggy 2008-11-20T07:42:00Z 2009-03-03T22:52:41Z <p>In algebra if I make the statement x + y = 3, the variables I used will hold the values either 2 and 1 or 1 and 2. I know that assignment in programming is not the same thing, but I got to wondering. If I wanted to represent the value of, say, a quantumly weird particle, I would want my variable to have two values at the same time and to have it resolve into one or the other later. Or maybe I'm just dreaming?</p> <p>Is it possible to say something like <code>i = 3 or 2;</code>?</p> http://stackoverflow.com/questions/292363/choosing-when-to-instantiate-classes 1 Choosing when to instantiate classes Ziggy 2008-11-15T09:54:46Z 2009-03-03T22:52:25Z <p>I recently wrote a class for an assignment in which I had to store names in an ArrayList (in java). I initialized the ArrayList as an instance variable <code>private ArrayList&lt;String&gt; names</code>. Later when I checked my work against the solution, I noticed that they had initialized their ArrayList in the <code>run()</code> method instead.</p> <p>I thought about this for a bit and I kind of feel it might be a matter of taste, but in general how does one choose in situations like this? Does one take up less memory or something?</p> <p>PS I like the instance variables in Ruby that start with an @ symbol: they are lovelier.</p> <p>(meta-question: What would be a better title for this question?)</p> http://stackoverflow.com/questions/220887/how-do-i-require-a-neighbour-class-in-java 1 How do I "require" a neighbour class in Java? Ziggy 2008-10-21T05:47:05Z 2009-03-03T22:51:45Z <p>In Ruby I have often written a number of small classes, and had a main class organize the little guys to get work done. I do this by writing </p> <pre><code>require "converter.rb" require "screenFixer.rb" . . . </code></pre> <p>at the top of the main class. How do I do this in Java? Is it "import?"</p> <p>Also, could someone please come up with a better title for this question?</p> http://stackoverflow.com/questions/394957/why-can-conways-game-of-life-be-classified-as-a-universal-machine 6 Why can Conway’s Game of Life be classified as a universal machine? Ziggy 2008-12-27T12:36:57Z 2009-03-03T22:51:23Z <p>I was recently reading about artificial life and came across the statement, "Conway’s Game of Life demonstrates enough complexity to be classified as a universal machine." I only had a rough understanding of what a universal machine is, and Wikipedia only brought me as close to understanding as Wikipedia ever does. I wonder if anyone could shed some light on this very sexy statement?</p> <p>Conway's Game of Life seems, to me, to be a lovely distraction with some tremendous implications: I can't make the leap between that and calculator? Is that even the leap that I should be making?</p> http://stackoverflow.com/questions/346169/when-to-pass-a-parameter-and-when-to-use-an-instance-variable 5 when to pass a parameter and when to use an instance variable Ziggy 2008-12-06T10:30:08Z 2009-03-03T22:51:06Z <p>How do you guys decide between keeping track of something locally and then just passing it in to every method you call on it, or declaring an instance variable and using it in the methods?</p> <p>I tend to prefer instance variables kept in a list at the end of the Class. But as my programs become more and more complicated, this list gets longer and longer... I figure that if something is getting passed often enough it should just be visible to all the boys and girls who need it, but then I start wondering, "why not just make everything public! Then there will be no more need of passing anything at all!"</p> http://stackoverflow.com/questions/604104/does-c-allocate-memory-automatically-for-me 4 Does C allocate memory automatically for me? Ziggy 2009-03-02T21:38:15Z 2009-03-03T22:47:20Z <p>I have been writing C for only a scant few weeks and have not taken the time to worry myself too much about <code>malloc()</code>. Recently, though, a program of mine returned a string of happy faces instead of the true/false values I had expected to it.</p> <p>If I create a struct like this:</p> <pre><code>typedef struct Cell { struct Cell* subcells; } </code></pre> <p>and then later initialize it like this</p> <pre><code>Cell makeCell(int dim) { Cell newCell; for(int i = 0; i &lt; dim; i++) { newCell.subcells[i] = makeCell(dim -1); } return newCell; //ha ha ha, this is here in my program don't worry! } </code></pre> <p>Am I going to end up accessing happy faces stored in memory somewhere, or perhaps writing over previously existing cells, or what? My question is, how does C allocate memory when I haven't actually malloc()ed the appropriate amount of memory? What's the default?</p> http://stackoverflow.com/questions/588711/are-conflicting-types-always-a-problem-in-c 3 Are conflicting types always a problem in C? Ziggy 2009-02-26T01:20:23Z 2009-03-03T22:46:01Z <p>I am having growing pains moving from Java to C. I have become used to having different methods with the same name, but which take different parameters. In C this creates problems?</p> <pre><code>Cell makeCell(int dim, int iterations, Cell parent); Cell makeCell(Cell parent); </code></pre> <p>Is there some quick little work around for this problem, or should I just keep a stiff upper lip and call one of them <code>_makeCell</code> or <code>makeCell2</code> or something equally ridiculous?</p> http://stackoverflow.com/questions/261428/entry-point-for-java-applications-main-init-or-run 3 Entry point for Java applications: main(), init(), or run()? Ziggy 2008-11-04T10:21:44Z 2009-03-03T22:45:06Z <p>So far I've been using "public void run() {}" methods to execute my code in Java. When/why might one want to use main() or init() instead of run()?</p> http://stackoverflow.com/questions/393675/using-return-statements-to-great-effect 2 Using return statements to great effect! Ziggy 2008-12-26T10:38:38Z 2009-03-03T22:44:47Z <p>When I am making methods with return values, I usually try and set things up so that there is never a case when the method is called in such a way that it would have to return some default value. When I started I would often write methods that did something, and would either return what they did or, if they failed to do anything, would return null. But I hate having ugly <code>if(!null)</code> statements all over my code,</p> <p>I'm reading a re-guide to ruby that I read many moons ago, by the pragmatic programmers, and I notice that they often return <code>self</code> (ruby's <code>this</code>) when they wouldn't normally return anything. This is, they say, in order to be able to chain method calls, as in this example using setters that return the object whose attributes they set.</p> <pre><code>tree.setColor(green).setDecor(gaudy).setPractical(false) </code></pre> <p>Initially I find this sort of thing attractive. There have been a couple of times when I have rejoiced at being able to chain method calls, like <code>Player.getHand().getSize()</code> but this is somewhat different in that the object of the method call changes from step to step. </p> <p>What does Stack Overflow think about return values? Are there any patterns or idioms that come to mind warmly when you think of return values? Any great ways to avoid frustration and increase beauty?</p> http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/292389#292389 1 Answer by Ziggy for Programming as a meaningful profession? Ziggy 2008-11-15T10:28:57Z 2009-03-03T22:39:28Z <p>I'm a doctor, and my job is meaningful because I cut flesh with a scalpel?</p> http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope 4 when does a thread go out of scope? Ziggy 2008-11-14T11:12:05Z 2009-03-03T22:38:49Z <p>I've written a program that counts lines, words, and characters in a text: it does this with threads. It works great sometimes, but not so great other times. What ends up happening is the variables pointing to the number of words and characters counted sometimes come up short and sometimes don't.</p> <p>It seems to me that the threads are sometimes ending before they can count all the words or characters that they want to. Is it because these threads go out of scope when the while (true) loop breaks?</p> <p>I've included the code from the thready part of my problem below:</p> <pre><code>private void countText() { try { reader = new BufferedReader(new FileReader("this.txt")); while (true) { final String line = reader.readLine(); if(line == null) {break;} lines++; new Thread(new Runnable() {public void run() {chars += characterCounter(line);}}).start(); new Thread(new Runnable() {public void run() {words += wordCounter(line);}}).start(); println(line); } } catch(IOException ex) {return;} } </code></pre> <p>(Sub Question: This is the first time I've asked about something and posted code. I don't want to use StackOverflow in place of google and wikipedia and am worried that this isn't an appropriate question? I tried to make the question more general so that I'm not just asking for help with my code... but, is there another website where this kind of question might be more appropriate?)</p> http://stackoverflow.com/questions/250868/is-it-possible-to-write-code-to-write-code 6 Is it possible to write code to write code? Ziggy 2008-10-30T16:42:24Z 2009-03-03T22:38:15Z <p>I've heard that there are some things one cannot do as a computer programmer, but I don't know what they are. One thing that occurred to me recently was: wouldn't it be nice to have a class that could make a copy of the source of the program it runs, modify that program and add a method to the class that it is, and then run the copy of the program and terminate itself. Is it possible for code to write code?</p> http://stackoverflow.com/questions/391794/is-there-an-upper-limit-on-txt-file-size 2 Is there an upper limit on .txt file size? Ziggy 2008-12-24T16:47:26Z 2009-03-03T22:30:49Z <p>As a Christmas gift I have written a small program in Java to calculate primes. My intention was to leave it on all night, calculating the next prime and writing it to a .txt file. In the morning I would kill the program and take the .txt file to my friend for Christmas.</p> <p>Is there anything I should be worried about? Bear in mind that this is true beginner Ziggy you are talking to, not some smart error checking ASM guy.</p> <p>EDIT More specifically, since I will be leaving this program on all night counting primes, is there any chance at all that I will encounter some kind of memory related error? Like, stacks crushing heaps or dogs and cats sleeping together?</p> <p>EDIT even more specifically, is there a line of code I could put in to stop the printing of lines when the file's size is 4GB? Just to be safe?</p> <p>EDIT: success: after leaving it on all night I got no more than 13 KB of primes, The highest I got was 22947217, which is like tens of thousands of primes. Success!</p> http://stackoverflow.com/questions/600651/what-is-the-difference-between-passing-by-reference-in-java-and-passing-a-pointer 10 What is the difference between passing by reference in Java and passing a pointer in C? Ziggy 2009-03-01T22:16:39Z 2009-03-01T22:52:02Z <p>I have been studying Java for a few months and am now starting to learn C. </p> <p>I am a little confused, I was under the impression that passing an object by reference and passing a pointer to that object were the same thing: I thought the difference was that in Java all passing of objects is done with pointers automatically, where as in C one has to actually sprinkle little asterisks and ampersands here and there. Recently, in conversation, I was assured that there was a difference!</p> <p>What is the difference between passing by reference and passing a pointer?</p> http://stackoverflow.com/questions/358546/casting-between-arraylists-in-java 2 Casting between ArrayLists in Java Ziggy 2008-12-11T06:09:35Z 2008-12-11T09:43:59Z <p>Hi</p> <p>Sorry, I thought this was an inheritance question: it was an ArrayList question all along!</p> <p>Ok, my problem is more specific than I thought. So I have two families of classes. Cards, and Zones. Zones are boxes for holding card. </p> <p>The first two subClasses of Zone, ZoneList and ZoneMap are meant to be two different ways of storing Cards. Further subclasses, such as Hand, and PokerHand, have their own specific ways of dealing with the cards they store. </p> <p>Where it gets complicated is that Card also has subClasses, such as PokerCard, and that the subclasses of ZoneList and ZoneMap are meant to organize those. </p> <p>So in ZoneList I have <code>protected ArrayList&lt;Card&gt; cardBox;</code> and in PokerHand I expected to be able to declare <code>cardBox = new ArrayList&lt;PokerCard&gt;();</code> since PokerCard is a Card. The error I am getting is that I apparently can't cast between Card and GangCard when it comes to ArrayLists... So I was trying to fix this by just redeclaring cardBox as <code>private ArrayList&lt;PokerCard&gt; cardBox;</code> inside PokerHand, but that resulted in the hiding that was bugging up my program.</p> <p>SO really, the question is about casting between ArrayLists? Java tells me I can't, so any ideas on how I can?</p> <p>z.</p> http://stackoverflow.com/questions/958671/what-is-a-private-header-in-c/958872#958872 Comment by Ziggy on what is a "private header" in c Ziggy 2009-06-09T00:38:20Z 2009-06-09T00:38:20Z You got the reference! Object-Oriented Programming, staring ANSI-C! There is cake for you, you just have to know where to look. http://stackoverflow.com/questions/958671/what-is-a-private-header-in-c/958686#958686 Comment by Ziggy on what is a "private header" in c Ziggy 2009-06-09T00:37:08Z 2009-06-09T00:37:08Z That's it, that's the very code indeed! http://stackoverflow.com/questions/958671/what-is-a-private-header-in-c Comment by Ziggy on what is a "private header" in c Ziggy 2009-06-09T00:31:44Z 2009-06-09T00:31:44Z oh man, the book is &quot;Object Oriented Programming, staring ANSI-C&quot; by Axel-Tobias Scheiner and it's my favorite book these days! http://stackoverflow.com/questions/869976/what-is-a-programming-language/870075#870075 Comment by Ziggy on what is a programming language? Ziggy 2009-05-15T18:03:03Z 2009-05-15T18:03:03Z your dog might argue that he is controlling your behavior. ㅋㅋㅋ http://stackoverflow.com/questions/869976/what-is-a-programming-language/869996#869996 Comment by Ziggy on what is a programming language? Ziggy 2009-05-15T18:01:19Z 2009-05-15T18:01:19Z what makes it machine readable, I think that's my question. What does machine readable mean. Thanks! http://stackoverflow.com/questions/640515/how-badly-can-c-crash/640597#640597 Comment by Ziggy on how badly can c crash? Ziggy 2009-03-25T17:11:03Z 2009-03-25T17:11:03Z Hmm yeah! I've been running my program on a DS emulator, but am scared to death to try it on my DS. I wish the libnds guys read Stackoverflow. http://stackoverflow.com/questions/640515/how-badly-can-c-crash/640570#640570 Comment by Ziggy on how badly can c crash? Ziggy 2009-03-25T17:08:34Z 2009-03-25T17:08:34Z Those stories are awesome! My first big confusing error was a stack overflow caused by instantiating mouse listeners inside a while loop. While loops! http://stackoverflow.com/questions/640515/how-badly-can-c-crash/640555#640555 Comment by Ziggy on how badly can c crash? Ziggy 2009-03-12T22:45:56Z 2009-03-12T22:45:56Z however, I am not using windows to run my programs, only to compile them. I am using the Nintendo DS to run them, so I aught to be more careful! http://stackoverflow.com/questions/600651/what-is-the-difference-between-passing-by-reference-in-java-and-passing-a-pointer/600659#600659 Comment by Ziggy on What is the difference between passing by reference in Java and passing a pointer in C? Ziggy 2009-03-01T22:33:25Z 2009-03-01T22:33:25Z Hey, could it be said that: &quot;pointer&quot; is a data type, and &quot;reference&quot; is just a way* to deal with data? One is a thing, the other is a technique? * I'm trying to avoid the ambiguity of using &quot;method&quot; here http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid/286254#286254 Comment by Ziggy on Why should I bother about serialVersionUID? Ziggy 2009-01-01T07:30:47Z 2009-01-01T07:30:47Z This is the full and complete answer to the question. http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid/286006#286006 Comment by Ziggy on Why should I bother about serialVersionUID? Ziggy 2009-01-01T07:29:35Z 2009-01-01T07:29:35Z @Gardner -&gt; agreed! But the questioner also wants to know why he might not want to be warned. http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid/285827#285827 Comment by Ziggy on Why should I bother about serialVersionUID? Ziggy 2009-01-01T07:28:35Z 2009-01-01T07:28:35Z So one might bother with SerializableVersionUID if one were concerned about compatibility w/ old versions of a class? http://stackoverflow.com/questions/285793/why-should-i-bother-about-serialversionuid/285809#285809 Comment by Ziggy on Why should I bother about serialVersionUID? Ziggy 2009-01-01T07:27:10Z 2009-01-01T07:27:10Z So, what you are saying essentially is that if a user did not understand all the above material, said user aught not bother worrying about serialization? I believe you answered the &quot;how?&quot; rather than explaining the &quot;why?&quot;. I, for one, do not understand why I aught bother with SerializableVersionUID. http://stackoverflow.com/questions/402514/why-might-one-also-use-a-blank-constructor/402527#402527 Comment by Ziggy on Why might one also use a blank constructor? Ziggy 2008-12-31T08:29:48Z 2008-12-31T08:29:48Z What does the research say? I usually write only as many constructors as I need (this tends to be one), but I saw some code on stackoverflow that went something like, `CoffeeCup mug = new cupBuilder().setShape(fat).setPractical(true).setHandle(true).build()`is this what you are talking about? http://stackoverflow.com/questions/394957/why-can-conways-game-of-life-be-classified-as-a-universal-machine/394997#394997 Comment by Ziggy on Why can Conway’s Game of Life be classified as a universal machine? Ziggy 2008-12-27T13:39:32Z 2008-12-27T13:39:32Z This Paul Rendell guy just blew my mind.