자바 관련해서 초보적인 질문입니다.

kuroneko의 이미지

이 중에서 showArea 메소드의 변수들을 private으로 놓으면 illegal modifier for parameter이라면서 only final is permitted라고 합니다. 왜 문제가 되는 것이지요? 다른 클래스에서 showArea 메소드를 활용하기 때문에 showArea는 default라지만 변수들은 private이어도 괜찮지 않나요?

class Rectangle
{
	private int llx, lly;	// 좌 하단
	private int urx, ury;	// 우 상단
 
	private boolean rangeJudge(int pos)
	{
		if(0<=pos && pos<=100)
			return true;
		else
			return false;
	}
 
	private boolean sizeJudge(int n1, int n2)
	{
		if(n1>=n2)
			return false;
		else
			return true;
	}
 
	void setX(int x1, int x2)
	{
		if(rangeJudge(x1)&&rangeJudge(x2))
		{
			if(sizeJudge(x1, x2))
			{
				llx=x1;
				urx=x2;
			}
			else
			{
				System.out.println("좌표 대소의 오류");
				return;
			}
		}
		else
		{
			System.out.println("잘못된 범위 지정.");
			return;
		}
	}
 
	void setY(int y1, int y2)
	{
		if(rangeJudge(y1)&&rangeJudge(y2))
		{
			if(sizeJudge(y1, y2))
			{
				lly=y1;
				ury=y2;
			}
			else
			{
				System.out.println("좌표 대소의 오류");
				return;		
			}
		}
		else
		{
			System.out.println("잘못된 범위 지정.");
			return;
		}
	}
 
	void showArea()
	{
		private int xLen=urx-llx;
		private int yLen=ury-lly;
		System.out.println("넓이 : "+(xLen*yLen));
	}
}

tmdrbs9021의 이미지

저도 JAVA 허접이지만
지역변수에 접근권한?제어?(public, protected, private)를 쓰나요?? 어차피 지역변순데..
그걸 JAVA에서 막아둔거 아닐까요????
제 밑천한 지식으로는 접근제어?권한?은 클래스 변수와 함수에 설정되는걸로 ...
이게 틀리면 바로 말씀좀해주세요~~~~~~~

저기요의 이미지

rangeJudge를 조건식? true:false 로 바꾸는게 편해요

emptynote의 이미지

자바 문법이 그러합니다.

메소드 안의 변수들은 지역 변수라고 부르며 지역 변수의 스코프는 메소드 안입니다.

하여 외부에서 참조를 할 일이 없기때문에 private, public 쓸 이유 1도 없습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.