• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:54
CEST 10:54
KST 17:54
  • 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
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun11[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists21[ASL21] Ro16 Preview Pt1: Fresh Flow9
Community News
2026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced92026 GSL Tour plans announced15Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid25
StarCraft 2
General
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Team Liquid Map Contest #22 - The Finalists Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool MaNa leaves Team Liquid Maestros of the Game 2 announced
Tourneys
GSL Code S Season 1 (2026) SC2 INu's Battles#15 <BO.9 2Matches> WardiTV Spring Cup RSL Revival: Season 5 - Qualifiers and Main Event SEL Masters #6 - Solar vs Classic (SC: Evo)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base Mutation # 521 Memorable Boss
Brood War
General
Pros React To: Leta vs Tulbo (ASL S21, Ro.8) ASL21 General Discussion [TOOL] Starcraft Chat Translator JaeDong's ASL S21 Ro16 Post-Review Missed out on ASL tickets - what are my options?
Tourneys
Escore Tournament StarCraft Season 2 [ASL21] Ro8 Day 2 [ASL21] Ro8 Day 1 ASL Season 21 LIVESTREAM with English Commentary
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Daigo vs Menard Best of 10 Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV Diablo IV
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread European Politico-economics QA Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2027 users

The Big Programming Thread - Page 435

Forum Index > General Forum
Post a Reply
Prev 1 433 434 435 436 437 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.
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
Last Edited: 2014-01-27 05:34:03
January 27 2014 05:27 GMT
#8681
hi. i have a small image that i want as background like a repeating tile. how do i achieve this in css?

+ Show Spoiler +
[image loading]


edit: im dumb. its background-repeat
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2014-01-27 12:24:23
January 27 2014 12:21 GMT
#8682
On January 27 2014 13:47 WarSame wrote:
Hey everyone, could someone point me to a good guide on the basics of Java sounds? I want to make a program that is a simple timer that beeps at the end. However, none of the guides I have found online have been near useful. In particular, the current one works according to Eclipse, but when it tries to load the file in as an AudioInputStream it has a heart attack and dies. So any help/pointers on getting started would be nice. For example, if someone has done this in the past if you could just post the basic code of how to get a sound playing from on file that would make me a happy coder. Thanks.

Here is what I have so far:

   public Timer() {
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("Test Sound Clip");
this.setSize(300, 200);
this.setVisible(true);

try {
// Open an audio input stream.
String urlLocation = System.getProperty("user.home") + "\\workspace\\GraemeTimer\\src\\htogether.mid";
System.out.println(urlLocation);
URL url = this.getClass().getClassLoader().getResource(urlLocation);
System.out.println(url);
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
// Get a sound clip resource.
Clip clip = AudioSystem.getClip();
// Open audio clip and load samples from the audio input stream.
clip.open(audioIn);
clip.start();
}
catch (UnsupportedAudioFileException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (LineUnavailableException e) {
e.printStackTrace();
}
}


It points out a Null pointer exception from the variable url(which I've printed separately and it seems to actually be null). However, every post I've seen elsewhere online has it like this, and I actually got this code from somewhere else, so I'm pretty confused about what went wrong. It's likely something with the file location but I print that as well and it looks fine. So I'm scratching my head.


I don't know anything about java audio, but luckily I don't think that's your problem.

You are trying to load a classpath resource with a file path, which isn't the same thing. You either need to switch over to learning how loading resources from a classloader works, or just use the file based method on AudioSystem.

File based:

String fileLocation = System.getProperty("user.home") + "\\workspace\\GraemeTimer\\src\\htogether.mid";
AudioInputStream audioIn = AudioSystem.getAudioInputStream(new File(fileLocation));


I can't see your classpath, but I would guess if your .mid file is in your java path, you could just do


URL url = this.getClass().getClassLoader().getResource("htogether.mid");
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
actionbastrd
Profile Blog Joined September 2010
Congo598 Posts
January 27 2014 12:28 GMT
#8683
So i am trying to learn C programing, and am hoping to dive really deep into it. I have a task which i am having trouble with. I feel like accomplishing this task could be done way better, but none the less,

Prompt the user and accept the following types of values from a SINGLE input line: char float int char.

What i have is this(spoiler), which works when the question asked is "char int char float", but breaks, i am assuming because it cannot tell when the float number ends. I understand spacing is an issue to and i commented on that in the prompt,.. but i need a separator somehow, i am learning out of books and having come across anything. I personally would just have it ask in separate lines or something. D:

This is actually my first language and am really stoked on it, but its mostly a grind with little to no in person help lol. If anyone has good C programming resources i could check out and read that would be awesome too, about anything!

+ Show Spoiler +

char f, g;
int h;
float i;

printf("Enter a char, float, int, char; with no spaces in between each input: ");

scanf("%c%f%d%c", &f, &i, &h, &g);

printf("You entered: %c, %.3f, %d, %c.\n", f, i, h, g);
It rained today inside my head...
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
January 27 2014 12:32 GMT
#8684
On January 27 2014 21:28 actionbastrd wrote:
So i am trying to learn C programing, and am hoping to dive really deep into it. I have a task which i am having trouble with. I feel like accomplishing this task could be done way better, but none the less,

Prompt the user and accept the following types of values from a SINGLE input line: char float int char.

What i have is this(spoiler), which works when the question asked is "char int char float", but breaks, i am assuming because it cannot tell when the float number ends. I understand spacing is an issue to and i commented on that in the prompt,.. but i need a separator somehow, i am learning out of books and having come across anything. I personally would just have it ask in separate lines or something. D:

This is actually my first language and am really stoked on it, but its mostly a grind with little to no in person help lol. If anyone has good C programming resources i could check out and read that would be awesome too, about anything!

+ Show Spoiler +

char f, g;
int h;
float i;

printf("Enter a char, float, int, char; with no spaces in between each input: ");

scanf("%c%f%d%c", &f, &i, &h, &g);

printf("You entered: %c, %.3f, %d, %c.\n", f, i, h, g);

You could just write a loop and use getchar, parse the input yourself. Scanf is kind of dangerous to use anyway because it's fairly weak against buffer overflow exploits (not that you should worry about such things when you're beginning, but still). Writing your own parser will probably teach you a lot more than just learning the format of scanf.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 28 2014 01:25 GMT
#8685
On January 27 2014 21:21 berated- wrote:
Show nested quote +
On January 27 2014 13:47 WarSame wrote:
Hey everyone, could someone point me to a good guide on the basics of Java sounds? I want to make a program that is a simple timer that beeps at the end. However, none of the guides I have found online have been near useful. In particular, the current one works according to Eclipse, but when it tries to load the file in as an AudioInputStream it has a heart attack and dies. So any help/pointers on getting started would be nice. For example, if someone has done this in the past if you could just post the basic code of how to get a sound playing from on file that would make me a happy coder. Thanks.

Here is what I have so far:

   public Timer() {
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("Test Sound Clip");
this.setSize(300, 200);
this.setVisible(true);

try {
// Open an audio input stream.
String urlLocation = System.getProperty("user.home") + "\\workspace\\GraemeTimer\\src\\htogether.mid";
System.out.println(urlLocation);
URL url = this.getClass().getClassLoader().getResource(urlLocation);
System.out.println(url);
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
// Get a sound clip resource.
Clip clip = AudioSystem.getClip();
// Open audio clip and load samples from the audio input stream.
clip.open(audioIn);
clip.start();
}
catch (UnsupportedAudioFileException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (LineUnavailableException e) {
e.printStackTrace();
}
}


It points out a Null pointer exception from the variable url(which I've printed separately and it seems to actually be null). However, every post I've seen elsewhere online has it like this, and I actually got this code from somewhere else, so I'm pretty confused about what went wrong. It's likely something with the file location but I print that as well and it looks fine. So I'm scratching my head.


I don't know anything about java audio, but luckily I don't think that's your problem.

You are trying to load a classpath resource with a file path, which isn't the same thing. You either need to switch over to learning how loading resources from a classloader works, or just use the file based method on AudioSystem.

File based:

String fileLocation = System.getProperty("user.home") + "\\workspace\\GraemeTimer\\src\\htogether.mid";
AudioInputStream audioIn = AudioSystem.getAudioInputStream(new File(fileLocation));


I can't see your classpath, but I would guess if your .mid file is in your java path, you could just do


URL url = this.getClass().getClassLoader().getResource("htogether.mid");
AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);

It works. Thanks a lot!
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
phar
Profile Joined August 2011
United States1080 Posts
January 28 2014 03:21 GMT
#8686
On January 27 2014 21:32 Tobberoth wrote:
Show nested quote +
On January 27 2014 21:28 actionbastrd wrote:
So i am trying to learn C programing, and am hoping to dive really deep into it. I have a task which i am having trouble with. I feel like accomplishing this task could be done way better, but none the less,

Prompt the user and accept the following types of values from a SINGLE input line: char float int char.

What i have is this(spoiler), which works when the question asked is "char int char float", but breaks, i am assuming because it cannot tell when the float number ends. I understand spacing is an issue to and i commented on that in the prompt,.. but i need a separator somehow, i am learning out of books and having come across anything. I personally would just have it ask in separate lines or something. D:

This is actually my first language and am really stoked on it, but its mostly a grind with little to no in person help lol. If anyone has good C programming resources i could check out and read that would be awesome too, about anything!

+ Show Spoiler +

char f, g;
int h;
float i;

printf("Enter a char, float, int, char; with no spaces in between each input: ");

scanf("%c%f%d%c", &f, &i, &h, &g);

printf("You entered: %c, %.3f, %d, %c.\n", f, i, h, g);

You could just write a loop and use getchar, parse the input yourself. Scanf is kind of dangerous to use anyway because it's fairly weak against buffer overflow exploits (not that you should worry about such things when you're beginning, but still). Writing your own parser will probably teach you a lot more than just learning the format of scanf.

Scanf is technically safe if you are careful about how you construct your calls to it. In particular, never use %s, always use %99s (for example, if putting into a char[] of 100). But that gets annoying in many situations, so fgets, getchar, etc etc may be nicer.

Also check the return value! Good habit to get into.
Who after all is today speaking about the destruction of the Armenians?
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
January 28 2014 05:35 GMT
#8687
writing an operating system on an arm board... oh god the void*
There is no one like you in the universe.
Garfailed
Profile Joined May 2011
Netherlands409 Posts
January 28 2014 06:22 GMT
#8688
On January 26 2014 22:07 Manit0u wrote:
Show nested quote +
On January 26 2014 15:53 Housemd wrote:
Update on Program:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
boolean x = true;
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (x == true){
SearchValue = array [i];
break;
}
}
if (x){
System.out.println("Found");
}
else
{
System.out.println("Not Found");
}
}
}


Works perfectly fine for values that are in the array. For values that are not, it still prints out found. I believe that I have a small syntax error (in the last if-else statement?) but I cannot spot it. I tried to use Chocolate's suggestions of booleans and it looks promising.


Why use for loop here instead of foreach?


Scanner in = new Scanner (System.in);
int SearchValue = in.nextlnt();
int arr[] = { 1, 2, 3, 4, 5 };

System.out.print("Please input a number: ");

for (int n: arr)
{
if (n == SearchValue)
{
System.out.println("Found");
}
else
{
System.out.println("Not found");
}
}


Instead of printing at every index of the array, you could have a boolean. Set it to false before you loop, and if (n == searchvalue) set it to true, then at the end check if (found) is true or false and print accordingly
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 28 2014 06:24 GMT
#8689
On January 28 2014 14:35 Blisse wrote:
writing an operating system on an arm board... oh god the void*

ah sweet! more descriptive please!
conspired against by a confederacy of dunces.
Badboyrune
Profile Blog Joined May 2010
Sweden2247 Posts
January 29 2014 00:01 GMT
#8690
Ok I'm getting quite confused. I'm making a pretty basic android app, it's my first so my experience is very limited. It basically displays data from a database based on intent sent from the intent sent from another activity in the app. This all worked fine, I could navigate without any issue with the android OS back button.

However when I enable "getActionBar().setDisplayHomeAsUpEnabled(true);" and try to navigate backwards with the Home button that breaks any activity that relies on receiving an intent, because it doesn't receive any. I tried putting the information in the onSaveInstanceState bundle, but the activity does not receive the bundle when navigated to with the Home button (savedInstanceState != null returns false).

I've looked through all I've been able to find online (which has been limited because searches involving android home button are generally unhelpful) and all I've really been able to find is that the home button seems to not be programmable anymore, it either sends you to the app home activity, or the activities parent activity which is what I'm trying to achieve. I'm assuming there's some way of doing this so any help would be much appreciated.
"If yellow does start SC2, I should start handsomenerd diaper busniess and become a rich man" - John the Translator
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
Last Edited: 2014-01-29 01:45:57
January 29 2014 01:30 GMT
#8691
On January 27 2014 21:32 Tobberoth wrote:
Show nested quote +
On January 27 2014 21:28 actionbastrd wrote:
So i am trying to learn C programing, and am hoping to dive really deep into it. I have a task which i am having trouble with. I feel like accomplishing this task could be done way better, but none the less,

Prompt the user and accept the following types of values from a SINGLE input line: char float int char.

What i have is this(spoiler), which works when the question asked is "char int char float", but breaks, i am assuming because it cannot tell when the float number ends. I understand spacing is an issue to and i commented on that in the prompt,.. but i need a separator somehow, i am learning out of books and having come across anything. I personally would just have it ask in separate lines or something. D:

This is actually my first language and am really stoked on it, but its mostly a grind with little to no in person help lol. If anyone has good C programming resources i could check out and read that would be awesome too, about anything!

+ Show Spoiler +

char f, g;
int h;
float i;

printf("Enter a char, float, int, char; with no spaces in between each input: ");

scanf("%c%f%d%c", &f, &i, &h, &g);

printf("You entered: %c, %.3f, %d, %c.\n", f, i, h, g);

You could just write a loop and use getchar, parse the input yourself. Scanf is kind of dangerous to use anyway because it's fairly weak against buffer overflow exploits (not that you should worry about such things when you're beginning, but still). Writing your own parser will probably teach you a lot more than just learning the format of scanf.


When dealing with different data types in input you want to be using sscanf instead of scanf in C:

http://forum.codecall.net/topic/73122-on-using-sscanf/
http://en.cppreference.com/w/c/io/fscanf (at the very bottom here you have an example similar to what you're trying to do)

There you go:

// sample string to parse with sscanf()
char input[] = "25 54.32E-1 Thompson 56789 0123 56ß水";
/* parse as follows:
an integer, a floating-point value, a word,
two-digit integer (digits 5 and 6)
a floating-point value (digits 7, 8, 9)
an integer which isn't stored anywhere
a string of integers (digits 5 and 6)
two wide characters, using multibyte to wide conversion */

int i, j;
float x, y;
char str1[10], str2[4];
wchar_t warr[2];
setlocale(LC_ALL, "en_US.utf8");

int ret = sscanf(input, "%d%f%9s%2d%f%*d %3[0-9]%2lc",
&i, &x, str1, &j, &y, str2, warr);

printf("Converted %d fields:\ni = %d\nx = %f\nstr1 = %s\n"
"j = %d\ny = %f\nstr2 = %s\n"
"warr[0] = U+%x warr[1] = U+%x\n",
ret, i, x, str1, j, y, str2, warr[0], warr[1]);


Edit: A bonus with using sscanf is also that it doesn't matter if someone will enter the input with or without spaces. It doesn't matter.
Time is precious. Waste it wisely.
berated-
Profile Blog Joined February 2007
United States1134 Posts
January 29 2014 03:00 GMT
#8692
On January 29 2014 09:01 Badboyrune wrote:
Ok I'm getting quite confused. I'm making a pretty basic android app, it's my first so my experience is very limited. It basically displays data from a database based on intent sent from the intent sent from another activity in the app. This all worked fine, I could navigate without any issue with the android OS back button.

However when I enable "getActionBar().setDisplayHomeAsUpEnabled(true);" and try to navigate backwards with the Home button that breaks any activity that relies on receiving an intent, because it doesn't receive any. I tried putting the information in the onSaveInstanceState bundle, but the activity does not receive the bundle when navigated to with the Home button (savedInstanceState != null returns false).

I've looked through all I've been able to find online (which has been limited because searches involving android home button are generally unhelpful) and all I've really been able to find is that the home button seems to not be programmable anymore, it either sends you to the app home activity, or the activities parent activity which is what I'm trying to achieve. I'm assuming there's some way of doing this so any help would be much appreciated.


I'm also just now learning android, maybe we can struggle through this together...

Have you read this page?
OsaX Nymloth
Profile Joined March 2013
Poland3244 Posts
January 29 2014 04:41 GMT
#8693
Anyone having some experience with Drupal? I'm trying to figure out the contextual fields and relationships in Views - but together with Node Reference module. I think I have some understanding of it, but somehow I can't get it to work as I need. Probably I'm missing something obvious or just misunderstanding how it works.
Twitter: @osaxnymloth
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
January 29 2014 05:59 GMT
#8694
okay. I have a normal web html. it has 4 columns(swimlanes).
now if I open it in a tablet like ipad, when it in landscape, it must show the 4 swimlanes.
if it changes to portrait, it must change into an accordion (http://jqueryui.com/accordion/)

how do I do this? media queries? do I make two types of html?
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
OsaX Nymloth
Profile Joined March 2013
Poland3244 Posts
January 29 2014 06:49 GMT
#8695
You can use media querries in CSS just fine I guess. At last that would be the way I would try.
Here's some examples: http://css-tricks.com/css-media-queries/
Twitter: @osaxnymloth
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-01-29 15:58:26
January 29 2014 15:51 GMT
#8696
I have a question about constants (in Java if it matters).

Example:

public class Example {
private static final String TEST = "Test";

public String getTest() {
return TEST;
}
}



public class Example2 {
public static final String TEST = "Test";
}


So which is better to use - Example.getTest() or Example2.TEST? In other words, when you want to access a constant variable, do you do it from a getter method or direct variable access? I understand it's up to 'private' or 'public' but what's the decision making anyway? Is it just encapsulation (hiding implementation)? What if the method was static, then no instance is required, so would you still use a getter method over direct access to the variable?
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
January 29 2014 17:31 GMT
#8697
On January 30 2014 00:51 darkness wrote:
I have a question about constants (in Java if it matters).

Example:

public class Example {
private static final String TEST = "Test";

public String getTest() {
return TEST;
}
}



public class Example2 {
public static final String TEST = "Test";
}


So which is better to use - Example.getTest() or Example2.TEST? In other words, when you want to access a constant variable, do you do it from a getter method or direct variable access? I understand it's up to 'private' or 'public' but what's the decision making anyway? Is it just encapsulation (hiding implementation)? What if the method was static, then no instance is required, so would you still use a getter method over direct access to the variable?

It depends. Since it's a constant, there's little reason to hide it, but it could be that you want to change how it's handled later, which a getter allows without editing the interface.

This is why properties own, gives you the best of both worlds.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
January 29 2014 17:50 GMT
#8698
Do you mean properties from Objective-C?
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
January 29 2014 19:00 GMT
#8699
On January 30 2014 02:50 darkness wrote:
Do you mean properties from Objective-C?

I was specifically talking about C#, but there's similar concepts in tons of languages.
misirlou
Profile Joined June 2010
Portugal3300 Posts
January 29 2014 20:18 GMT
#8700
On January 30 2014 02:31 Tobberoth wrote:
Show nested quote +
On January 30 2014 00:51 darkness wrote:
I have a question about constants (in Java if it matters).

Example:

public class Example {
private static final String TEST = "Test";

public String getTest() {
return TEST;
}
}



public class Example2 {
public static final String TEST = "Test";
}


So which is better to use - Example.getTest() or Example2.TEST? In other words, when you want to access a constant variable, do you do it from a getter method or direct variable access? I understand it's up to 'private' or 'public' but what's the decision making anyway? Is it just encapsulation (hiding implementation)? What if the method was static, then no instance is required, so would you still use a getter method over direct access to the variable?

It depends. Since it's a constant, there's little reason to hide it, but it could be that you want to change how it's handled later, which a getter allows without editing the interface.

This is why properties own, gives you the best of both worlds.


Adding to this: To access 1st example you have to create an instance of Example to access a static constant which doesnt make much sense
Example ex1=new Example();
String s=ex1.getTest();


The getter is a good idea indeed to change how the value is handled but it makes a lot more sense if it was a static getter since it's for a static field.
Prev 1 433 434 435 436 437 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 6m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech135
Nina 65
StarCraft: Brood War
Mind 733
Shuttle 699
firebathero 636
Hm[arnc] 499
Leta 233
actioN 176
Killer 156
Dewaltoss 97
Sharp 96
Hyun 64
[ Show more ]
ToSsGirL 43
yabsab 42
Bale 31
NotJumperer 28
Nal_rA 19
Terrorterran 13
ZergMaN 10
Sacsri 3
Dota 2
resolut1ontv 1068
monkeys_forever476
NeuroSwarm130
League of Legends
JimRising 597
Counter-Strike
shoxiejesuss1609
Stewie2K1078
Other Games
summit1g5201
WinterStarcraft561
ceh9556
Happy465
Sick257
crisheroes121
Livibee60
Organizations
Other Games
gamesdonequick530
Dota 2
PGL Dota 2 - Main Stream133
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• CranKy Ducklings SOOP2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos882
• TFBlade785
• Stunt639
Upcoming Events
Replay Cast
6m
CranKy Ducklings1
Escore
1h 6m
INu's Battles
2h 6m
Classic vs ByuN
SHIN vs ByuN
OSC
4h 6m
Big Brain Bouts
7h 6m
Replay Cast
15h 6m
Replay Cast
1d
RSL Revival
1d 1h
Classic vs GgMaChine
Rogue vs Maru
WardiTV Invitational
1d 2h
IPSL
1d 7h
Ret vs Art_Of_Turtle
Radley vs TBD
[ Show More ]
BSL
1d 10h
Replay Cast
1d 15h
RSL Revival
2 days
herO vs TriGGeR
NightMare vs Solar
uThermal 2v2 Circuit
2 days
BSL
2 days
IPSL
2 days
eOnzErG vs TBD
G5 vs Nesh
Patches Events
2 days
Replay Cast
3 days
Wardi Open
3 days
Afreeca Starleague
3 days
Jaedong vs Light
Monday Night Weeklies
3 days
Replay Cast
3 days
Sparkling Tuna Cup
4 days
Afreeca Starleague
4 days
Snow vs Flash
WardiTV Invitational
4 days
GSL
5 days
Classic vs Cure
Maru vs Rogue
GSL
6 days
SHIN vs Zoun
ByuN vs herO
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-04-29
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Escore Tournament S2: W5
KK 2v2 League Season 1
StarCraft2 Community Team League 2026 Spring
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
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 © 2026 TLnet. All Rights Reserved.