• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 01:19
CET 07:19
KST 15:19
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2BGE Stara Zagora 2026 announced15[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
BGE Stara Zagora 2026 announced Weekly Cups (Nov 24-30): MaxPax, Clem, herO win SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband Information Request Regarding Chinese Ladder SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
Which season is the best in ASL? [ASL20] Ask the mapmakers — Drop your questions BW General Discussion FlaSh's Valkyrie Copium BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread The Perfect Game Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games?
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1374 users

The Big Programming Thread - Page 403

Forum Index > General Forum
Post a Reply
Prev 1 401 402 403 404 405 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Manit0u
Profile Blog Joined August 2004
Poland17490 Posts
November 30 2013 20:41 GMT
#8041
On December 01 2013 05:10 Warri wrote:
Show nested quote +
On December 01 2013 05:00 Manit0u wrote:
On December 01 2013 04:42 Warri wrote:
Woa java is driving me nuts today.
I have this endless loop:

boolean pause=true;
while (true) {
if (!pause) {
update();
}
}

At the start of the program pause is set to true and is not changed in the class which contains the loop. It is only changed in another class, which contains a gui. And heres the weird part: pause gets set to false correctly, but the loop still doesnt run. However, if i add a System.out.println("foo"); inside the loop, it works. So my assumption is, java falsely "optimizes", aka removes, the loop, because the condition is never changed to true inside the class. How can i prevent that without adding dummy commands?


Can you make it more like this?

Class A

while (true) {
if (!ClassB->queryPause(pause)) {
update();
}
}


Class B

boolean pause = true;

... do stuff with pause ...

public boolean queryPause(boolean pause)
{
return pause;
}


I think it would be even better if you had 3 classes. 2 that actually do stuff and have all the data and another one acting as an interface for the other two to communicate. This way you can easily shuffle stuff around and change things later.

Hm i dont understand what the parameter is for in queryPause, if pause is a member of Class B?
I tried this:
Class A:

while (true) {
if (!B.getPause()) {
update();
}
}

Class B:

boolean pause=true;
...
public boolean getPause() {
return pause;
}

This also doesnt work. But again, if i change the getPause() method to

public boolean getPause() {
System.out.println("qwe");
return pause;
}

it starts working... i dont get it


Don't you have to pass the pause variable to getPause method first? I'm a bit confused here and I have no idea why it would suddenly work if you add the print message.
Time is precious. Waste it wisely.
3FFA
Profile Blog Joined February 2010
United States3931 Posts
Last Edited: 2013-11-30 20:57:22
November 30 2013 20:56 GMT
#8042
That's just weird. o.O

Does it work with other statements in place of the print statement(out of curiosity)? Maybe the return statement just got lonely
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
Die4Ever
Profile Joined August 2010
United States17718 Posts
November 30 2013 21:00 GMT
#8043
hi guys, I made the source code public for the WCS Predictor 2014 that I'm currently working on.
http://4ever.tv/wcs_predictor_2014/
Remember this code is made to be optimized so I can run maximum sample sizes, and is not really good coding style usually.
(also I'm in the contest thing please vote for me in Group P http://www.teamliquid.net/forum/viewmessage.php?topic_id=436997)
"Expert" mods4ever.com
Warri
Profile Joined May 2010
Germany3208 Posts
November 30 2013 21:06 GMT
#8044

int i;
public boolean getPause() {
i++;
return pause;
}

doesnt work.


int i;
public boolean getPause() {
System.out.println(i);
return pause;
}

works. As i said, i have absolutely no idea why it does that.
Die4Ever
Profile Joined August 2010
United States17718 Posts
Last Edited: 2013-11-30 21:18:40
November 30 2013 21:12 GMT
#8045
On December 01 2013 06:06 Warri wrote:

int i;
public boolean getPause() {
i++;
return pause;
}

doesnt work.


int i;
public boolean getPause() {
System.out.println(i);
return pause;
}

works. As i said, i have absolutely no idea why it does that.

I'm not experienced in java, but it sounds like a threading issue maybe? If that's the case then what you need is a memory barrier so that java knows to check the ram for the updated value rather than reusing what's in the cpu register, or set the variable to volatile if java has such a thing. The println function would act as memory barrier and that would be why that "fixes" it.

edit: yea java has volatile, this is what you need http://stackoverflow.com/questions/2423622/volatile-vs-static-in-java
"Expert" mods4ever.com
Warri
Profile Joined May 2010
Germany3208 Posts
November 30 2013 21:28 GMT
#8046
On December 01 2013 06:12 Die4Ever wrote:
Show nested quote +
On December 01 2013 06:06 Warri wrote:

int i;
public boolean getPause() {
i++;
return pause;
}

doesnt work.


int i;
public boolean getPause() {
System.out.println(i);
return pause;
}

works. As i said, i have absolutely no idea why it does that.

I'm not experienced in java, but it sounds like a threading issue maybe? If that's the case then what you need is a memory barrier so that java knows to check the ram for the updated value rather than reusing what's in the cpu register, or set the variable to volatile if java has such a thing. The println function would act as memory barrier and that would be why that "fixes" it.

edit: yea java has volatile, this is what you need http://stackoverflow.com/questions/2423622/volatile-vs-static-in-java

Yeah that works, thank you!
Manit0u
Profile Blog Joined August 2004
Poland17490 Posts
Last Edited: 2013-12-01 19:02:58
December 01 2013 17:18 GMT
#8047
On December 01 2013 06:28 Warri wrote:
Show nested quote +
On December 01 2013 06:12 Die4Ever wrote:
On December 01 2013 06:06 Warri wrote:

int i;
public boolean getPause() {
i++;
return pause;
}

doesnt work.


int i;
public boolean getPause() {
System.out.println(i);
return pause;
}

works. As i said, i have absolutely no idea why it does that.

I'm not experienced in java, but it sounds like a threading issue maybe? If that's the case then what you need is a memory barrier so that java knows to check the ram for the updated value rather than reusing what's in the cpu register, or set the variable to volatile if java has such a thing. The println function would act as memory barrier and that would be why that "fixes" it.

edit: yea java has volatile, this is what you need http://stackoverflow.com/questions/2423622/volatile-vs-static-in-java

Yeah that works, thank you!


Could you also check one other way to do it that could possibly fix the issue without the need for volatile types? What happens if you prototype functions that use pause variable? To do that you have to declare the function before you define it, like so:



boolean getPause();

int main()
{
getPause();

return 0;
}

boolean getPause();
{
do_stuff();
}


That is, of course, if Java supports prototypes...

Edit: Scratch that. I read up on that and it seems that Java has method signatures but not method prototypes.
Time is precious. Waste it wisely.
Warri
Profile Joined May 2010
Germany3208 Posts
Last Edited: 2013-12-01 23:43:08
December 01 2013 23:41 GMT
#8048
On December 02 2013 02:18 Manit0u wrote:
Show nested quote +
On December 01 2013 06:28 Warri wrote:
On December 01 2013 06:12 Die4Ever wrote:
On December 01 2013 06:06 Warri wrote:

int i;
public boolean getPause() {
i++;
return pause;
}

doesnt work.


int i;
public boolean getPause() {
System.out.println(i);
return pause;
}

works. As i said, i have absolutely no idea why it does that.

I'm not experienced in java, but it sounds like a threading issue maybe? If that's the case then what you need is a memory barrier so that java knows to check the ram for the updated value rather than reusing what's in the cpu register, or set the variable to volatile if java has such a thing. The println function would act as memory barrier and that would be why that "fixes" it.

edit: yea java has volatile, this is what you need http://stackoverflow.com/questions/2423622/volatile-vs-static-in-java

Yeah that works, thank you!


Could you also check one other way to do it that could possibly fix the issue without the need for volatile types? What happens if you prototype functions that use pause variable? To do that you have to declare the function before you define it, like so:



boolean getPause();

int main()
{
getPause();

return 0;
}

boolean getPause();
{
do_stuff();
}


That is, of course, if Java supports prototypes...

Edit: Scratch that. I read up on that and it seems that Java has method signatures but not method prototypes.

As far as i understand your post, that seems to be what an interface does in java. I dont think that would change anything though :p
http://en.wikipedia.org/wiki/Interface_(Java)#Overview
Specifically "Interface methods are public, abstract and never final. Think of them as prototypes only; no implementations are allowed."
Roe
Profile Blog Joined June 2010
Canada6002 Posts
Last Edited: 2013-12-01 23:44:16
December 01 2013 23:44 GMT
#8049
Hey I just had a quick question about interfaces - why is it useful to use them when you're simply reiterating the definition of a method? Like so:

+ Show Spoiler +
void Update();

void Update()
{
stuff
}


It doesn't seem like you're adding anything to the method you're using by implementing an interface, in fact it seems like you're only adding more code typing to do.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-12-02 00:20:52
December 01 2013 23:56 GMT
#8050
On December 02 2013 08:44 Roe wrote:
Hey I just had a quick question about interfaces - why is it useful to use them when you're simply reiterating the definition of a method? Like so:

+ Show Spoiler +
void Update();

void Update()
{
stuff
}


It doesn't seem like you're adding anything to the method you're using by implementing an interface, in fact it seems like you're only adding more code typing to do.


Sorry, I assumed you mean Java's interfaces. I think I've not come across such a keyword in Objective-C and C, but it's still possible that other languages use the keyword.

In my opinion, interface is like what a contract is. If you inherit the class, then you have to play by the house's rules. Every further implementation of the interface also binds you to that "contract".

I'm not too experienced with Java, so take this with a grain of salt.

Edit #1: As far as I remember, when I was doing Java RMI for university, the client only knows about the interface but not about implementation, so if I'm not mistaken, you can also hide implementation from the user.

Edit #2: Oh, yeah, I just remembered what I've recently studied in Software Engineering.

Basically, if you have an interface:


interface Encryption {
public String encrypt(String);
}


and then:


class LowerLevelEncryption implements Encryption {
// constructor
LowerLevelEncryption() {

}

public String encrypt(String blahblah) {
...
}
}



class HigherLevelEncryption implements Encryption {
// constructor
HigherLevelEncryption() {

}

public String encrypt(String blahblah) {
...
}
}


Now you can take advantage of polymorphism by choosing which encryption level to use at runtime.

E.g.

Encryption encryptionMethod = new HigherLevelEncryption();

and you can change it anytime to: encryptionMethod = new LowerLevelEncryption();
freelander
Profile Blog Joined December 2004
Hungary4707 Posts
December 02 2013 00:07 GMT
#8051
On December 02 2013 08:44 Roe wrote:
Hey I just had a quick question about interfaces - why is it useful to use them when you're simply reiterating the definition of a method? Like so:

+ Show Spoiler +
void Update();

void Update()
{
stuff
}


It doesn't seem like you're adding anything to the method you're using by implementing an interface, in fact it seems like you're only adding more code typing to do.


it's about future updates to the code. maybe there will be new classes to implement that interface later.
And all is illuminated.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2013-12-02 03:10:07
December 02 2013 03:09 GMT
#8052
--- Nuked ---
heroyi
Profile Blog Joined March 2009
United States1064 Posts
Last Edited: 2013-12-03 03:29:58
December 03 2013 03:26 GMT
#8053
Hw help:
From a test header file like so:
...
char s[]={"2/3","2/-3"};
...

I need to convert that string into a fraction (int array). The C files utilizes this function (fraction is a struct and all has been initialized):

Fraction string_to_fraction(const char *S)
{
Fraction result = {0,1}; //to initialize
sscanf(S,"%d/%d",result); //to read in the data as int to place into the result array
return result;
}

Am I doing something wrong? This assignment is more of "fill in the blanks" type fyi (standard library, variables initialized etc...) I am not looking for someone to do my hw but simply to point me in the right direction as when I try to execute the program that tests my function it simply crashes with no warning.
wat wat in my pants
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-12-03 03:33:37
December 03 2013 03:30 GMT
#8054
Yeah you need to pass in pointers to each element of your fraction. Your fraction has two elements. Your sscanf call would look something more like:

const char *in = "1/2";
int out[2];

sscanf( in, "%d/%d", out, out + 1 );


Edit: Oh you said Fraction is a struct. Okay like this then:

typedef struct Fraction
{
int numerator;
int denominator;
} Fraction;

Fraction f;

const char *stringFraction = "1/2";

sscanf( stringFraction, "%d/%d", &f.numerator, &f.denominator );


Does this make sense?
heroyi
Profile Blog Joined March 2009
United States1064 Posts
December 03 2013 03:37 GMT
#8055
On December 03 2013 12:30 CecilSunkure wrote:
Yeah you need to pass in pointers to each element of your fraction. Your fraction has two elements. Your sscanf call would look something more like:

const char *in = "1/2";
int out[2];

sscanf( in, "%d/%d", out, out + 1 );


Edit: Oh you said Fraction is a struct. Okay like this then:

typedef struct Fraction
{
int numerator;
int denominator;
} Fraction;

Fraction f;

const char *stringFraction = "1/2";

sscanf( stringFraction, "%d/%d", &f.numerator, &f.denominator );


Does this make sense?

yep.

I literally just figured it out after I posted. Your response only solidifies it. Thanks for the quick reply and appreciate the help.
wat wat in my pants
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
December 03 2013 05:47 GMT
#8056
While you're at numerator/denominator, is the alternative String.split() in Java? Just wondering.
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-12-03 13:50:52
December 03 2013 13:40 GMT
#8057
Ok! So your favorite noob is back with a question for c++.

I have 2 classes, both within the same namespace.
One of the classes calls upon the other with a function and one of the parameters is of the first class.
I try to send it with a "this" pointer and that can't be done because the compiler complains that i try to send namespacename::classname* instead of just the classname*.

I tried adding the namespace to the functions parameter but that didn't work.

Basically:

m_stateMachine.SetState(m_stateFactory->GetState(0), this, 0);

bool CStateMachine::SetState(CState* _state, CGame* _game, unsigned int _id)
Set it ablaze!
iaretehnoob
Profile Joined June 2004
Sweden741 Posts
December 03 2013 14:04 GMT
#8058
What's the actual error message? What's the prototype/signature of m_stateFactory->GetState(0)? And I assume the type of "this" is CGame* ?
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-12-03 14:10:30
December 03 2013 14:07 GMT
#8059
On December 03 2013 23:04 iaretehnoob wrote:
What's the actual error message? What's the prototype/signature of m_stateFactory->GetState(0)? And I assume the type of "this" is CGame* ?


error C2664: 'tpe::CStateMachine::SetState' : cannot convert parameter 2 from 'tpe::CGame *const ' to 'CGame *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast

Yes, "this" is CGame*.

And they are both in the tpe namespace.
Set it ablaze!
ThatGuy
Profile Blog Joined April 2008
Canada695 Posts
December 03 2013 14:48 GMT
#8060
On December 03 2013 22:40 Nausea wrote:
Ok! So your favorite noob is back with a question for c++.

I have 2 classes, both within the same namespace.
One of the classes calls upon the other with a function and one of the parameters is of the first class.
I try to send it with a "this" pointer and that can't be done because the compiler complains that i try to send namespacename::classname* instead of just the classname*.

I tried adding the namespace to the functions parameter but that didn't work.

Basically:

m_stateMachine.SetState(m_stateFactory->GetState(0), this, 0);

bool CStateMachine::SetState(CState* _state, CGame* _game, unsigned int _id)


Putting this might work:

bool CStateMachine::SetState(CState* _state, CGame* const _game, unsigned int _id)


I believe 'this' is a const pointer that cannot have its address modified.
Prev 1 401 402 403 404 405 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 5h 41m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 183
RuFF_SC2 155
SortOf 90
trigger 22
ProTech20
StarCraft: Brood War
actioN 407
PianO 144
Noble 41
NotJumperer 17
Icarus 7
Dota 2
XaKoH 415
League of Legends
JimRising 721
Other Games
summit1g14629
WinterStarcraft552
C9.Mang0325
Organizations
Other Games
gamesdonequick814
StarCraft: Brood War
UltimateBattle 13
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Berry_CruncH144
• Hupsaiya 92
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki38
• Diggity8
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1177
• Stunt472
Upcoming Events
Wardi Open
5h 41m
StarCraft2.fi
10h 41m
Replay Cast
17h 41m
The PondCast
1d 3h
OSC
1d 9h
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d 17h
Korean StarCraft League
2 days
CranKy Ducklings
3 days
SC Evo League
3 days
BSL 21
3 days
Sziky vs OyAji
Gypsy vs eOnzErG
[ Show More ]
OSC
3 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
4 days
OSC
4 days
BSL 21
4 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
5 days
Wardi Open
5 days
StarCraft2.fi
5 days
Replay Cast
5 days
StarCraft2.fi
6 days
PiGosaur Monday
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.