• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Search results

  1. R

    Quick little C++ debugging Problem

    Since you're using the next variable from SimpleLink, it is restricted by the SimpleLink interface. If you want to use the DoubleLink methods, you have to cast the variable. DoubleLink *temp1 = (DoubleLink*)next;Generally you have to be careful with this and ensure that you are casting only...
  2. R

    Quick little C++ debugging Problem

    i have no idea what you're trying to do here. why are you making a virtual method of set without any parameters? if SimpleLink is a singly linked list, why does it even have a setPrev? if a setPrev is needed for DoubleLink, then it should only exist in that class not SimpleLink. if this is...
  3. R

    Quick little C++ debugging Problem

    i wouldn't add a pure virtual function for your situation. i would also say look at your inheritance again, there should be no reason to redefine the next pointer in DoubleLink, just use the next pointer from SingleLink. You may need to define some (all?) methods as virtual so DoubleLink...
  4. R

    Little help with java

    if you ever decide to program for a living, what you went through here will probably happen a lot. small error in logic = hours of debugging.
  5. R

    Quick little C++ debugging Problem

    SimpleLink newList(a,size); cout << newList.getNext()->getNext()->getDatum() << endl; SimpleLink *temp1 = newList.getNext(); SimpleLink *temp2 = &newList; newList = *temp1; delete temp2; when to declare a variable like: SimpleLink newList(a,size); the variable exists in the stack...
  6. R

    Little help with java

    i agree with ambientZ the code is reasonable, in fact, using the example line you gave, it worked perfectly for me. sidenote: Team is a class, it looks like he posted a constructor, so should be capitalized.
  7. R

    Little help with java

    more information would be helpful. what is an example line from the file? what debugging steps have you done? are you sure line read in the data properly? are you sure the StringTokenizer is returning the tokens you expect before you call parseInt on it? are you required to use...
  8. R

    Quick little C++ debugging Problem

    http://weblogs.asp.net/whaggard/archive/2004/11/05/252685.aspx
  9. R

    Quick little C++ debugging Problem

    i'm not about this either but i think when accessing static variables from non-static methods, you have to scope the variable. SimpleLink::~SimpleLink() { SimpleLink::count--; }
  10. R

    Quick little C++ debugging Problem

    i haven't done c++ in a while so i'm just throwing this out there. isn't it supposed to be: SimpleLink* SimpleLink::getNext() { return next; } if i'm completely wrong, sorry.
  11. R

    Anyone can recomend an online colege to get a degree?

    simple example, say you have an oo design assignment. a professor can give direct feedback/insight on your answer, to help you improve it. reading about it on google doesn't provide the same effect. when i'm designing something at work, i don't google it, that mainly helps for...
  12. R

    Anyone can recomend an online colege to get a degree?

    it sounds like you are saying you have the ability to learn. lots of programmers can do the work given enough time and books however employers are also looking for people who have previous exposure in certain fields of computer science. going through a proper cs curriculum may provide more...
  13. R

    Anyone Familiar with PerfectDisk v8.0?

    right click the shortcut to the cmd prompt and run it as administrator. alternatively, i think you can use fsutil to mark the disk as dirty and it should check it next reboot.
  14. R

    Java Book

    i second this book. i'm still reading it but its very good. however, i don't think it'd work so well without foundational java knowledge.
  15. R

    What are the actual advantages Vista has over XP?

    well for me its about similar performance with greater ease of use, which isn't measurable. i use xp at work, vista at home and i find it easier to do file system navigation, which for some reason is one of the main things i do on this computer. also i find the layouts of certain things...
  16. R

    What are the actual advantages Vista has over XP?

    however would you prefer your applications to use available ram to cache data to run faster? especially if it was smart enough to shrink the cache size when another application requests more ram? because thats how i thought vista worked. the ram is available for any application to use but...
  17. R

    My G7 Just stopped working!!

    that happened to mine, i had the teal version. No icemat though i have an exactmat. You have no choice but to RMA it, i got the carbon fiber version as a replacement and haven't had a problem with it.
  18. R

    logitech G7

    Just wanted to share my experience. i had the teal one originally and after a month it wouldn't maintain a connection to the base station. I called and told them my problem and they immediately agreed to send a replacement. When i called back, they said messed up that order and then i got the...
  19. R

    Newegg doesn't carry BenQ dvd burners? what is recommended

    I think BenQ sold their optical division to lite-on and since then its been harder to get them. Supposedly the best way to get a benq is through a rebrand. As for best dvd writer, i think it depends what you want it to do. I recommend reading up in the cdfreaks.com forums. I ended up...
  20. R

    LCD Pivot Feature

    my gateway pivots, it comes with software to automatically pivot supposedly. You can also set hot keys to pivot. both nvidia and ati should have desktop rotation options in their drivers. I actually use the pivot to read manga but other than that, i wouldn't use it.
  21. R

    Weird Problem with G7

    i have mine set to a custom DPI and on some boots it won't set itself to the DPI, or it seems slower. I just turn the mouse off and on again and that usually fixes it.
  22. R

    Freeware/Opensource alternative to UltraEdit?

    try pspad its freeware www.pspad.com
  23. R

    Why ARE AMDs Faster In Gaming?

    i don't really understand why you're trying to defend the k6-2. It was cheap and worked ok for its price but it in no way as good you're making it out to be. The only reason it kept up with intel processor's was because of 3dnow! which i feel was never really supported back then. And yes, i...
Back
Top