• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:25
CEST 03:25
KST 10:25
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Balance hotfix patch 5.0.16b (July 16)55Reynor: GSL Loss Wasn't About Preparation Format16[IPSL] Spring 2026 Grand Finals - This Weekend!6Weekly Cups (July 6 - 12): Protoss strike back12BSL Season 22 Full Overview & Conclusion8
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) [D] Wireframe Casting Removed Clem: "I don't have that much hope in Blizzard" Reynor: GSL Loss Wasn't About Preparation Format Is the larve respawn broken?
Tourneys
Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026 GSL CK #5 Race War RSL Revival: Season 6 - Qualifiers and Main Event HomeStory Cup 29
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together Mutation # 532 Nuclear Family
Brood War
General
BW General Discussion ASL22 General Discussion NaDa’s Body Followup Pros Debate: Zerg Unfairly Nerfed? (ASL S22 map) Etiquete rules in Asl?
Tourneys
[Megathread] Daily Proleagues [IPSL] Spring 2026 Grand Finals - This Weekend! Escore Tournament - Season 3 Small VOD Thread 2.0
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread General RTS Discussion Thread Beyond All Reason
Dota 2
Looking for a Dota Mentor 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
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread The Games Industry And ATVI UK Politics Mega-thread YouTube Thread
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Req][Books] Good Fantasy/SciFi books Series you have seen recently...
Sports
2024 - 2026 Football Thread MLB/Baseball 2023 McBoner: A hockey love story Tennis[sport] Formula 1 Discussion
World Cup 2022
Tech Support
Simple Questions Simple Answers FPS when play League Of Legend on laptop How to clean a TTe Thermaltake keyboard?
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
ASL S22 English Commentary…
namkraft
Poker (part 2)
Nebuchad
The Experiences We Want and …
TrAiDoS
An Exploration of th…
waywardstrategy
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 8327 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
Poland17795 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
Portugal3306 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
Epic.LAN
13:00
Epic.LAN 48 Playoff Stage
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft483
ViBE233
SpeCial 116
Ketroc 19
RuFF_SC2 18
StarCraft: Brood War
NaDa 59
Dota 2
NeuroSwarm172
Counter-Strike
summit1g8005
minikerr23
Super Smash Bros
hungrybox1271
Mew2King513
Other Games
gofns10512
tarik_tv9165
ToD210
C9.Mang0155
XaKoH 119
Organizations
Other Games
gamesdonequick2179
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 12 non-featured ]
StarCraft 2
• Hupsaiya 104
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Other Games
• Scarra362
Upcoming Events
RSL Revival
7h 35m
Classic vs Trap
herO vs SHIN
Sparkling Tuna Cup
8h 35m
OSC
11h 35m
IPSL
14h 35m
Bonyth vs Ret
WardiTV Weekly
1d 9h
Monday Night Weeklies
1d 14h
OSC
1d 22h
PiGosaur Cup
2 days
The PondCast
3 days
Replay Cast
4 days
[ Show More ]
CrankTV Team League
4 days
Replay Cast
4 days
CrankTV Team League
5 days
Korean StarCraft League
6 days
RSL Revival
6 days
Online Event
6 days
Replay Cast
6 days
Liquipedia Results

Completed

YSL S3
HSC XXIX
Eternal Conflict S2 E2

Ongoing

IPSL Spring 2026
Acropolis #4
CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
Eternal Conflict S2 E3
Stake Ranked Episode 3
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

Upcoming

Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
CSLAN 4
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
Stake Ranked Episode 4
Logitech G Connect 2026
StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
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.