<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://trans.onionmixer.net/wiki/index.php?action=history&amp;feed=atom&amp;title=SqueakByExample%3A1.9</id>
	<title>SqueakByExample:1.9 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://trans.onionmixer.net/wiki/index.php?action=history&amp;feed=atom&amp;title=SqueakByExample%3A1.9"/>
	<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;action=history"/>
	<updated>2026-04-21T11:34:32Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1110&amp;oldid=prev</id>
		<title>Onionmixer: 책 검수</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1110&amp;oldid=prev"/>
		<updated>2017-08-12T08:53:26Z</updated>

		<summary type="html">&lt;p&gt;책 검수&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==메서드 찾기==&lt;br /&gt;
&lt;br /&gt;
때로는, 여러분이 메서드의 이름을 추측할 수 있거나, 클래스의 이름보다는 적어도 메서드 이름의 작은 부분을 보다 더 쉽게 추측 할 수 있습니다. 예를 들어, 만약 현재 시간이 궁금할 경우, &amp;quot;now&amp;quot;라 불리는 메서드나 하위 문자열에 &amp;quot;now&amp;quot;를 포함하는 메서드를 기대할 수 있을 것입니다. 그런데 이 메서드는 어디에 있을까요? Method Finder 가 도와드릴 수 있습니다. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{CommentSqueak|&amp;quot;Tools flap&amp;quot; 밖으로 {{HighlightGray|method finder}} 아이콘을 끌어내십시오. 상단 왼쪽 창에 &amp;quot;now&amp;quot;를 입력하고 {{HighlightGray|accept}} 하십시오. (또는 그냥 return 키를 누르십시오.)}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Method Finder 는 하위 문자열 &amp;quot;now&amp;quot; 를 포함하고 있는 모든 메서드 이름의 목록을 표시할 것입니다. &amp;quot;now&amp;quot; 를 향해 스크롤을 내리려면, 목록으로 커서를 옮기고 &amp;quot;n&amp;quot;을 입력합니다. 이 기술은 모든 스크롤 창에서 동작합니다. &amp;quot;now&amp;quot; 를 선택하면 그림 1.18에서 보시는 바와 같이 오른쪽 창에서 이 이름으로 정의된 세가지 클래스 및 메서드를 보여줍니다. 이 항목 중 아무거나 한가지를 선택하면 해당 창에 브라우저를 엽니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:methodFinder-now.png|none|467px|thumb|그림 1.18: &amp;quot;now&amp;quot; 이름을 가진 메서드를 정의한 세가지 클래스를 보여주는 Method Finder]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
평소에는 메서드가 존재한다는 바람직한 생각을 갖고 계시겠지만, 그것이 어떤 이름으로 불리는 지에 대한 생각은 하고 있지 못하실 것입니다. 이 상황에서도 Method Finder 는 도움가 도움을 줄 수 있습니다! 예를 들면, &amp;#039;eureka&amp;#039; 를 &amp;#039;EUREKA&amp;#039; 로 모든 문자를 대문자로 변환하는 상황을 가정해봅시다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{CommentSqueak|그림 1.19에서 보이는 것처럼 {{HighlightBold|&amp;#039;eureka&amp;#039;.&amp;#039;EUREKA&amp;#039;}}를 메서드 검색에 입력하고 {{HighlightBold|RETURN}}키를 누르십시오.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Method Finder 는 여러분이 원하는 메서드를 제시할 것입니다. Method Finder 의 우측 패인의 각각의 라인 시작부분에 있는 *(별표) 문자는 요청한 결과를 가져오기 위해 실제로 사용한 메서드임을 가리킵니다. 따라서, String asUppercase 의 앞 부분의 &amp;#039;&amp;#039;&amp;#039;*&amp;#039;&amp;#039;&amp;#039;(별표) 문자는, &amp;#039;&amp;#039;String&amp;#039;&amp;#039; 클래스에 정의된 asUppercase 메서드를 실행했으며, 우리가 원했던 결과를 반환했음을 의미합니다. *(별표)를 갖고 있지 않은 메서드는 기대했던 결과를 반환하는 메서드와 동일한 이름을 가진 다른 메서드입니다. 따라서 &amp;#039;eureka&amp;#039; 는 Character 객체가 아니므로 Characater&amp;gt;&amp;gt;asUppercase 를 실행하지 않았습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:MethodFinder-example1.png|none|467px|thumb|그림 1.19: 메서드 찾기 예제]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
또한 인자를 가진 메서드에 대해서도 Method Finder 를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 메서드를 찾고 있다면, 그 예로 &amp;#039;25&amp;#039;. &amp;#039;35&amp;#039;. &amp;#039;5&amp;#039; 를 시도해볼 수 있습니다. 또한 탐색 범위를 좁히기 위해 메서드 검색에 여러 가지 예제를 제시할 수도 있으며, 하단 창에 있는 도움말 텍스트로 더 많은 내용을 설명합니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SqueakByExample]]&lt;/div&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1106&amp;oldid=prev</id>
		<title>Onionmixer: 번역수정</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1106&amp;oldid=prev"/>
		<updated>2013-01-10T02:37:24Z</updated>

		<summary type="html">&lt;p&gt;번역수정&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==메서드 찾기==&lt;br /&gt;
&lt;br /&gt;
때로는, 여러분이 메서드의 이름을 추측할 수 있거나, 또는 클래스의 이름보다는 적어도 메서드 이름의 최소한의 부분을 보다 더 쉽게 추측 할 수 있습니다. 예를 들어, 만약 현재 시간에 궁금할 경우, &amp;quot;now&amp;quot;라 불리는 메서드나 하위 문자열(substring)에 &amp;quot;now&amp;quot;를 포함하는 메서드를 기대할 것입니다. 그런데 이 메서드가 어디에 있을까요? 메서드 파인더(the method finder)는 여러분을 도와줄 수 있습니다. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{CommentSqueak|&amp;quot;Tools&amp;quot; 플랩 밖으로 {{HighlightGray|method finder}} icon(메서드 파인더 아이콘)을 드래그 하십시오. 상단 왼쪽 창에 &amp;quot;now&amp;quot;를 입력하고 {{HighlightGray|accept}} 하십시오. (또는 RETURN 키를 누르십시오.)}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
메서드 파인더(the method finder)는 하위 문자열 &amp;quot;now&amp;quot;를 포함하고 있는 모든 메서드 이름 목록을 표시할 것입니다. &amp;quot;now&amp;quot;를 향해 스크롤을 내리려면, 목록으로 커서를 옮기고 &amp;quot;n&amp;quot;을 입력합니다. 이 기술은 모든 스크롤 되는 창들에서 동작합니다. &amp;quot;now&amp;quot;를 선택하면 그림 1.18에서 보이는 것처럼, 오른쪽 패널이 &amp;quot;now&amp;quot;라는 이름으로 메서드를 정의하는 3개의 패널을 보여줍니다. 이 패널들 중 아무 패널 한 개를 선택하면 그 패널 위에 브라우저가 열립니다.&lt;br /&gt;
&lt;br /&gt;
평소에 여러분은 메서드가 존재한다는 좋은 생각을 갖고 계시겠지만, 그것이 어떤 이름으로 불리는 지에 대한 생각은 하고 있지 못하실 것입니다. 그래도 메서드 파인더(the method finder)는 도움이 됩니다! 예를 들면, 여러분이 문자열을 대문자로 변환하는 메서드 찾기를 원한다고 가정해 봅시다. 예컨데 해당 메서드는 &amp;#039;eureka&amp;#039;를 &amp;#039;EUREKA&amp;#039;로 변환할 것입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:methodFinder-now.png|none|467px|thumb|그림 1.18: &amp;quot;now&amp;quot; 이름을 가진 메서드를 지정하는 3개의 클래스를 보여주는 메서드 파인더(the method finder)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{CommentSqueak|그림 1.19에서 보이는 것처럼 {{HighlightBold|&amp;#039;eureka&amp;#039;.&amp;#039;EUREKA&amp;#039;}}를 메서드 검색에 입력하고 {{HighlightBold|RETURN}}키를 누르십시오.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
메서드 검색은 여러분이 원하는 메서드를 제안할 것입니다. 메서드 파인더의 우측 창 줄의 시작부분에 있는 *(별표)는 요청한 결과를 얻기 위해 실제로 사용한 메서드를 가리킵니다. 그러므로, 문자열 asUppercase의 앞에 있는 &amp;#039;&amp;#039;&amp;#039;*&amp;#039;&amp;#039;&amp;#039;별표는, 클래스 문자열(the Class String)에 정의된 메서드 asUppercase을 힐행했으며, 우리가 원했던 결과를 반환했다는 사실을 알려줍니다.&lt;br /&gt;
&lt;br /&gt;
별표(*-asterisk)를 갖고 있지 않은 메서드는 기대했던 결과를 반환한 메서드들과 동일한 이름을 가진 다른 메서드들 입니다. 그러므로 Characater&amp;gt;&amp;gt;asUppercase는 이 예제에서 실행되지 않았으며, 그 이유는 &amp;#039;eureka&amp;#039;가 문자 오브젝트가 아니기 때문입니다. &lt;br /&gt;
&lt;br /&gt;
여러분은 또한 인자를 가진 메서드에 대해 메서드 파인더를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 메서드를 찾고 있다면, 그 예로 25. 35. 5를 시도해볼 수 있습니다. 또한 탐색 범위를 좁히기 위해 메서드 검색에게 여러 개의 예를 제시할 수 있으며, 아래 패널에 있는 도움말 텍스트에서 더 많은 내용을 설명할 것입니다.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SqueakByExample]]&lt;/div&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1100&amp;oldid=prev</id>
		<title>Onionmixer at 04:28, 30 August 2012</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1100&amp;oldid=prev"/>
		<updated>2012-08-30T04:28:17Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:28, 30 August 2012&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;찾기==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;찾기==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;때때로, 여러분은 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드의 &lt;/del&gt;이름을 추측할 수 있거나 또는 조금 더 쉽게 클래스의 이름보다 적어도 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;이름의 최소한의 부분을 추측 할 수 있습니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;때때로, 여러분은 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드의 &lt;/ins&gt;이름을 추측할 수 있거나 또는 조금 더 쉽게 클래스의 이름보다 적어도 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;이름의 최소한의 부분을 추측 할 수 있습니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;예를 들어, 만약 현재 시간에 관심이 있을 경우, &quot;now&quot;라 불리는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드가 &lt;/del&gt;있을 것을 기대하거나 또는 서브문자열(substring)으로서 &quot;now&quot;를 포함하는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;기대할 것입니다. 그러나 이 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드가 &lt;/del&gt;어디에 있을까요? &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더(the method finder)는 이 작업을 위해 여러분을 도울 수 있습니다.  &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;예를 들어, 만약 현재 시간에 관심이 있을 경우, &quot;now&quot;라 불리는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드가 &lt;/ins&gt;있을 것을 기대하거나 또는 서브문자열(substring)으로서 &quot;now&quot;를 포함하는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;기대할 것입니다. 그러나 이 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드가 &lt;/ins&gt;어디에 있을까요? &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더(the method finder)는 이 작업을 위해 여러분을 도울 수 있습니다.  &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|도구 플랩(the Tools flap)밖으로 {{HighlightGray|method finder}} icon(&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드파인더 &lt;/del&gt;아이콘)을 드레그합니다. 상단 왼쪽 창에 &quot;now&quot;를 타이핑하고 {{HighlightGray|accept}}합니다. (또는 RETURN 키를 누릅니다)}}&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|도구 플랩(the Tools flap)밖으로 {{HighlightGray|method finder}} icon(&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드파인더 &lt;/ins&gt;아이콘)을 드레그합니다. 상단 왼쪽 창에 &quot;now&quot;를 타이핑하고 {{HighlightGray|accept}}합니다. (또는 RETURN 키를 누릅니다)}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더(the method finder)는 서브문자열(substring) &quot;now&quot;를 포함하고 있는 모든 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;이름 목록을 표시할 것입니다. &quot;now&quot;를 향해 스크롤을 내리려면, 목록으로 커서를 옮기고 &quot;n&quot;을 타이핑합니다. 이 기술은 모든 스크롤 되는 창들에서 동작합니다. &quot;now&quot;를 선택하면 그림 1.18에서 보이는 것 처럼, 오른쪽 패널이 &quot;now&quot;라는 이름으로 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;정의하는 3개의 패널을 보여줍니다. 이 패널들 중 아무 패널 한개를 선택하면 그 패널 위에 브라우저가 열립니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더(the method finder)는 서브문자열(substring) &quot;now&quot;를 포함하고 있는 모든 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;이름 목록을 표시할 것입니다. &quot;now&quot;를 향해 스크롤을 내리려면, 목록으로 커서를 옮기고 &quot;n&quot;을 타이핑합니다. 이 기술은 모든 스크롤 되는 창들에서 동작합니다. &quot;now&quot;를 선택하면 그림 1.18에서 보이는 것 처럼, 오른쪽 패널이 &quot;now&quot;라는 이름으로 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;정의하는 3개의 패널을 보여줍니다. 이 패널들 중 아무 패널 한개를 선택하면 그 패널 위에 브라우저가 열립니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;평소에 여러분은 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드가 &lt;/del&gt;존재한다는 좋은 생각은 갖고 계시지만, 그것이 어떤 이름으로 불리는지에 대한 생각은 하고 있지 못하실 것입니다. &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더(the method finder)는 여전히 도움이 됩니다! 예를 들면, 여러분이 문자열을 대문자로 변환하는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;찾기를 원한다고 가정해 봅시다. 예컨데 그 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드는 &lt;/del&gt;&#039;eureka&#039;를 &#039;EUREKA&#039;로 변환할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;평소에 여러분은 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드가 &lt;/ins&gt;존재한다는 좋은 생각은 갖고 계시지만, 그것이 어떤 이름으로 불리는지에 대한 생각은 하고 있지 못하실 것입니다. &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더(the method finder)는 여전히 도움이 됩니다! 예를 들면, 여러분이 문자열을 대문자로 변환하는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;찾기를 원한다고 가정해 봅시다. 예컨데 그 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드는 &lt;/ins&gt;&#039;eureka&#039;를 &#039;EUREKA&#039;로 변환할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[image:methodFinder-now.png|none|467px|thumb|그림 1.18: &quot;now&quot; 이름을 가진 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;지정하는 3개의 클래스를 보여주는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더(the method finder)]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[image:methodFinder-now.png|none|467px|thumb|그림 1.18: &quot;now&quot; 이름을 가진 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;지정하는 3개의 클래스를 보여주는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더(the method finder)]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|그림 1.19에서 보이는 것처럼 {{HighlightBold|&#039;eureka&#039;.&#039;EUREKA&#039;}}를 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더에 타이핑하고 {{HighlightBold|RETURN}}키를 누릅니다.}}&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|그림 1.19에서 보이는 것처럼 {{HighlightBold|&#039;eureka&#039;.&#039;EUREKA&#039;}}를 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더에 타이핑하고 {{HighlightBold|RETURN}}키를 누릅니다.}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더는 여러분이 원하는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;제안할 것입니다. &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더의 우측 패널 라인의 시작부분에 있는 *(별표)는 요청한 결과를 얻기 위해 실제로 사용된 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;가리킵니다. 그러므로, 문자열 asUppercase의 앞에 있는 &#039;&#039;&#039;*&#039;&#039;&#039;별표는, 클래스 문자열(the Class String)에 정의된 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;asUppercase가 실행되었으며, 우리가 원했던 결과를 리턴 했다는 사실을 공지합니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더는 여러분이 원하는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;제안할 것입니다. &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더의 우측 패널 라인의 시작부분에 있는 *(별표)는 요청한 결과를 얻기 위해 실제로 사용된 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;가리킵니다. 그러므로, 문자열 asUppercase의 앞에 있는 &#039;&#039;&#039;*&#039;&#039;&#039;별표는, 클래스 문자열(the Class String)에 정의된 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;asUppercase가 실행되었으며, 우리가 원했던 결과를 리턴 했다는 사실을 공지합니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;별표(*-asterisk)를 갖고 있지 않은 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드는 &lt;/del&gt;기대했던 결과를 리턴한 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드들과 &lt;/del&gt;동일한 이름을 가진 다른 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드들 &lt;/del&gt;입니다. 그러므로 Characater&amp;gt;&amp;gt;asUppercase는 우리의 견본에서 실행되지 않았으며, 그 이유는 &#039;eureka&#039;가 캐릭터 오브젝트(Character object)가 아니기 때문입니다.  &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;별표(*-asterisk)를 갖고 있지 않은 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드는 &lt;/ins&gt;기대했던 결과를 리턴한 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드들과 &lt;/ins&gt;동일한 이름을 가진 다른 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드들 &lt;/ins&gt;입니다. 그러므로 Characater&amp;gt;&amp;gt;asUppercase는 우리의 견본에서 실행되지 않았으며, 그 이유는 &#039;eureka&#039;가 캐릭터 오브젝트(Character object)가 아니기 때문입니다.  &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;여러분은 또한 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;찾기 위해 인수를 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드를 &lt;/del&gt;찾고 있다면, 그 견본으로 25.35.5를 시도할 수 있습니다. 또한 탐색공간을 좁히기 위해 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메소드 &lt;/del&gt;파인더이게 여러 개의 예를 제시할 수 있으며, 아래 패널에 있는 도움말 텍스트는 더 많은 내용을 설명할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;여러분은 또한 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;찾기 위해 인수를 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드를 &lt;/ins&gt;찾고 있다면, 그 견본으로 25.35.5를 시도할 수 있습니다. 또한 탐색공간을 좁히기 위해 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;메서드 &lt;/ins&gt;파인더이게 여러 개의 예를 제시할 수 있으며, 아래 패널에 있는 도움말 텍스트는 더 많은 내용을 설명할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==Notes==&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;==Notes==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1099&amp;oldid=prev</id>
		<title>Onionmixer at 04:07, 30 August 2012</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1099&amp;oldid=prev"/>
		<updated>2012-08-30T04:07:07Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:07, 30 August 2012&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l2&quot;&gt;Line 2:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 2:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;때때로, 여러분은 메소드의 이름을 추측할 수 있거나 또는 조금 더 쉽게 클래스의 이름보다 적어도 메소드 이름의 최소한의 부분을 추측 할 수 있습니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;때때로, 여러분은 메소드의 이름을 추측할 수 있거나 또는 조금 더 쉽게 클래스의 이름보다 적어도 메소드 이름의 최소한의 부분을 추측 할 수 있습니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;예를 들어, 만약 현재 시간에 관심이 있을 경우, &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”라 &lt;/del&gt;불리는 메소드가 있을 것을 기대하거나 또는 서브문자열(substring)으로서 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”를 &lt;/del&gt;포함하는 메소드를 기대할 것입니다. 그러나 이 메소드가 어디에 있을까요? 메소드 파인더(the method finder)는 이 작업을 위해 여러분을 도울 수 있습니다.  &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;예를 들어, 만약 현재 시간에 관심이 있을 경우, &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;라 &lt;/ins&gt;불리는 메소드가 있을 것을 기대하거나 또는 서브문자열(substring)으로서 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;를 &lt;/ins&gt;포함하는 메소드를 기대할 것입니다. 그러나 이 메소드가 어디에 있을까요? 메소드 파인더(the method finder)는 이 작업을 위해 여러분을 도울 수 있습니다.  &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|도구 플랩(the Tools flap)밖으로 {{HighlightGray|method finder}} icon(메소드파인더 아이콘)을 드레그합니다. 상단 왼쪽 창에 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”를 &lt;/del&gt;타이핑하고 {{HighlightGray|accept}}합니다. (또는 RETURN 키를 누릅니다)}}&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|도구 플랩(the Tools flap)밖으로 {{HighlightGray|method finder}} icon(메소드파인더 아이콘)을 드레그합니다. 상단 왼쪽 창에 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;를 &lt;/ins&gt;타이핑하고 {{HighlightGray|accept}}합니다. (또는 RETURN 키를 누릅니다)}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;메소드 파인더(the method finder)는 서브문자열(substring) &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”를 &lt;/del&gt;포함하고 있는 모든 메소드 이름 목록을 표시할 것입니다. &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”를 &lt;/del&gt;향해 스크롤을 내리려면, 목록으로 커서를 옮기고 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“n”을 &lt;/del&gt;타이핑합니다. 이 기술은 모든 스크롤 되는 창들에서 동작합니다. &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”를 &lt;/del&gt;선택하면 그림 1.18에서 보이는 것 처럼, 오른쪽 패널이 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now”라는 &lt;/del&gt;이름으로 메소드를 정의하는 3개의 패널을 보여줍니다. 이 패널들 중 아무 패널 한개를 선택하면 그 패널 위에 브라우저가 열립니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;메소드 파인더(the method finder)는 서브문자열(substring) &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;를 &lt;/ins&gt;포함하고 있는 모든 메소드 이름 목록을 표시할 것입니다. &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;를 &lt;/ins&gt;향해 스크롤을 내리려면, 목록으로 커서를 옮기고 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;n&quot;을 &lt;/ins&gt;타이핑합니다. 이 기술은 모든 스크롤 되는 창들에서 동작합니다. &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;를 &lt;/ins&gt;선택하면 그림 1.18에서 보이는 것 처럼, 오른쪽 패널이 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot;라는 &lt;/ins&gt;이름으로 메소드를 정의하는 3개의 패널을 보여줍니다. 이 패널들 중 아무 패널 한개를 선택하면 그 패널 위에 브라우저가 열립니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;평소에 여러분은 메소드가 존재한다는 좋은 생각은 갖고 계시지만, 그것이 어떤 이름으로 불리는지에 대한 생각은 하고 있지 못하실 것입니다. 메소드 파인더(the method finder)는 여전히 도움이 됩니다! 예를 들면, 여러분이 문자열을 대문자로 변환하는 메소드 찾기를 원한다고 가정해 봅시다. 예컨데 그 메소드는 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;‘eureka’를 ‘EUREKA’로 &lt;/del&gt;변환할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;평소에 여러분은 메소드가 존재한다는 좋은 생각은 갖고 계시지만, 그것이 어떤 이름으로 불리는지에 대한 생각은 하고 있지 못하실 것입니다. 메소드 파인더(the method finder)는 여전히 도움이 됩니다! 예를 들면, 여러분이 문자열을 대문자로 변환하는 메소드 찾기를 원한다고 가정해 봅시다. 예컨데 그 메소드는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&#039;eureka&#039;를 &#039;EUREKA&#039;로 &lt;/ins&gt;변환할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[image:methodFinder-now.png|none|467px|thumb|그림 1.18: &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;“now” &lt;/del&gt;이름을 가진 메소드를 지정하는 3개의 클래스를 보여주는 메소드 파인더(the method finder)]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[image:methodFinder-now.png|none|467px|thumb|그림 1.18: &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&quot;now&quot; &lt;/ins&gt;이름을 가진 메소드를 지정하는 3개의 클래스를 보여주는 메소드 파인더(the method finder)]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l19&quot;&gt;Line 19:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 19:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;메소드 파인더는 여러분이 원하는 메소드를 제안할 것입니다. 메소드 파인더의 우측 패널 라인의 시작부분에 있는 *(별표)는 요청한 결과를 얻기 위해 실제로 사용된 메소드를 가리킵니다. 그러므로, 문자열 asUppercase의 앞에 있는 *별표는, 클래스 문자열(the Class String)에 정의된 메소드 asUppercase가 실행되었으며, 우리가 원했던 결과를 리턴 했다는 사실을 공지합니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;메소드 파인더는 여러분이 원하는 메소드를 제안할 것입니다. 메소드 파인더의 우측 패널 라인의 시작부분에 있는 *(별표)는 요청한 결과를 얻기 위해 실제로 사용된 메소드를 가리킵니다. 그러므로, 문자열 asUppercase의 앞에 있는 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&#039;&#039;&#039;&lt;/ins&gt;*&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&#039;&#039;&#039;&lt;/ins&gt;별표는, 클래스 문자열(the Class String)에 정의된 메소드 asUppercase가 실행되었으며, 우리가 원했던 결과를 리턴 했다는 사실을 공지합니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;별표(*-asterisk)를 갖고 있지 않은 메소드는 기대했던 결과를 리턴한 메소드들과 동일한 이름을 가진 다른 메소드들 입니다. 그러므로 Characater&amp;gt;&amp;gt;asUppercase는 우리의 견본에서 실행되지 않았으며, 그 이유는 &#039;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;eureka’가 &lt;/del&gt;캐릭터 오브젝트(Character object)가 아니기 때문입니다.  &lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;별표(*-asterisk)를 갖고 있지 않은 메소드는 기대했던 결과를 리턴한 메소드들과 동일한 이름을 가진 다른 메소드들 입니다. 그러므로 Characater&amp;gt;&amp;gt;asUppercase는 우리의 견본에서 실행되지 않았으며, 그 이유는 &#039;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;eureka&#039;가 &lt;/ins&gt;캐릭터 오브젝트(Character object)가 아니기 때문입니다.  &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;여러분은 또한 메소드를 찾기 위해 인수를 메소드 파인더를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 메소드를 찾고 있다면, 그 견본으로 25.35.5를 시도할 수 있습니다. 또한 탐색공간을 좁히기 위해 메소드 파인더이게 여러 개의 예를 제시할 수 있으며, 아래 패널에 있는 도움말 텍스트는 더 많은 내용을 설명할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;여러분은 또한 메소드를 찾기 위해 인수를 메소드 파인더를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 메소드를 찾고 있다면, 그 견본으로 25.35.5를 시도할 수 있습니다. 또한 탐색공간을 좁히기 위해 메소드 파인더이게 여러 개의 예를 제시할 수 있으며, 아래 패널에 있는 도움말 텍스트는 더 많은 내용을 설명할 것입니다.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1098&amp;oldid=prev</id>
		<title>Onionmixer: 스타일수정</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1098&amp;oldid=prev"/>
		<updated>2012-08-18T13:55:13Z</updated>

		<summary type="html">&lt;p&gt;스타일수정&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 13:55, 18 August 2012&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l16&quot;&gt;Line 16:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 16:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|그림 1.19에서 보이는 것처럼 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;‘eureka’&lt;/del&gt;.&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;’EUREKA’를 &lt;/del&gt;메소드 파인더에 타이핑하고 &lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;RETURN키를 &lt;/del&gt;누릅니다.}}&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;{{CommentSqueak|그림 1.19에서 보이는 것처럼 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;{{HighlightBold|&#039;eureka&#039;&lt;/ins&gt;.&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;&#039;EUREKA&#039;}}를 &lt;/ins&gt;메소드 파인더에 타이핑하고 &lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;{{HighlightBold|RETURN}}키를 &lt;/ins&gt;누릅니다.}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1097&amp;oldid=prev</id>
		<title>Onionmixer at 18:46, 7 August 2012</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1097&amp;oldid=prev"/>
		<updated>2012-08-07T18:46:57Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 18:46, 7 August 2012&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l13&quot;&gt;Line 13:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 13:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[image:&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;MethodFinder&lt;/del&gt;-&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;example1&lt;/del&gt;.png|none|467px|thumb|그림 1.18: “now” 이름을 가진 메소드를 지정하는 3개의 클래스를 보여주는 메소드 파인더(the method finder)]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[image:&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;methodFinder&lt;/ins&gt;-&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;now&lt;/ins&gt;.png|none|467px|thumb|그림 1.18: “now” 이름을 가진 메소드를 지정하는 3개의 클래스를 보여주는 메소드 파인더(the method finder)]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
	<entry>
		<id>https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1096&amp;oldid=prev</id>
		<title>Onionmixer: SBE 메소드찾기 페이지 추가</title>
		<link rel="alternate" type="text/html" href="https://trans.onionmixer.net/wiki/index.php?title=SqueakByExample:1.9&amp;diff=1096&amp;oldid=prev"/>
		<updated>2012-08-07T18:45:59Z</updated>

		<summary type="html">&lt;p&gt;SBE 메소드찾기 페이지 추가&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==메소드 찾기==&lt;br /&gt;
&lt;br /&gt;
때때로, 여러분은 메소드의 이름을 추측할 수 있거나 또는 조금 더 쉽게 클래스의 이름보다 적어도 메소드 이름의 최소한의 부분을 추측 할 수 있습니다.&lt;br /&gt;
예를 들어, 만약 현재 시간에 관심이 있을 경우, “now”라 불리는 메소드가 있을 것을 기대하거나 또는 서브문자열(substring)으로서 “now”를 포함하는 메소드를 기대할 것입니다. 그러나 이 메소드가 어디에 있을까요? 메소드 파인더(the method finder)는 이 작업을 위해 여러분을 도울 수 있습니다. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{CommentSqueak|도구 플랩(the Tools flap)밖으로 {{HighlightGray|method finder}} icon(메소드파인더 아이콘)을 드레그합니다. 상단 왼쪽 창에 “now”를 타이핑하고 {{HighlightGray|accept}}합니다. (또는 RETURN 키를 누릅니다)}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
메소드 파인더(the method finder)는 서브문자열(substring) “now”를 포함하고 있는 모든 메소드 이름 목록을 표시할 것입니다. “now”를 향해 스크롤을 내리려면, 목록으로 커서를 옮기고 “n”을 타이핑합니다. 이 기술은 모든 스크롤 되는 창들에서 동작합니다. “now”를 선택하면 그림 1.18에서 보이는 것 처럼, 오른쪽 패널이 “now”라는 이름으로 메소드를 정의하는 3개의 패널을 보여줍니다. 이 패널들 중 아무 패널 한개를 선택하면 그 패널 위에 브라우저가 열립니다.&lt;br /&gt;
&lt;br /&gt;
평소에 여러분은 메소드가 존재한다는 좋은 생각은 갖고 계시지만, 그것이 어떤 이름으로 불리는지에 대한 생각은 하고 있지 못하실 것입니다. 메소드 파인더(the method finder)는 여전히 도움이 됩니다! 예를 들면, 여러분이 문자열을 대문자로 변환하는 메소드 찾기를 원한다고 가정해 봅시다. 예컨데 그 메소드는 ‘eureka’를 ‘EUREKA’로 변환할 것입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:MethodFinder-example1.png|none|467px|thumb|그림 1.18: “now” 이름을 가진 메소드를 지정하는 3개의 클래스를 보여주는 메소드 파인더(the method finder)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{CommentSqueak|그림 1.19에서 보이는 것처럼 ‘eureka’.’EUREKA’를 메소드 파인더에 타이핑하고 RETURN키를 누릅니다.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
메소드 파인더는 여러분이 원하는 메소드를 제안할 것입니다. 메소드 파인더의 우측 패널 라인의 시작부분에 있는 *(별표)는 요청한 결과를 얻기 위해 실제로 사용된 메소드를 가리킵니다. 그러므로, 문자열 asUppercase의 앞에 있는 *별표는, 클래스 문자열(the Class String)에 정의된 메소드 asUppercase가 실행되었으며, 우리가 원했던 결과를 리턴 했다는 사실을 공지합니다.&lt;br /&gt;
&lt;br /&gt;
별표(*-asterisk)를 갖고 있지 않은 메소드는 기대했던 결과를 리턴한 메소드들과 동일한 이름을 가진 다른 메소드들 입니다. 그러므로 Characater&amp;gt;&amp;gt;asUppercase는 우리의 견본에서 실행되지 않았으며, 그 이유는 &amp;#039;eureka’가 캐릭터 오브젝트(Character object)가 아니기 때문입니다. &lt;br /&gt;
&lt;br /&gt;
여러분은 또한 메소드를 찾기 위해 인수를 메소드 파인더를 사용할 수 있습니다. 예를 들어, 만약 여러분이 두 개의 정수의 최대 공약수를 찾는 메소드를 찾고 있다면, 그 견본으로 25.35.5를 시도할 수 있습니다. 또한 탐색공간을 좁히기 위해 메소드 파인더이게 여러 개의 예를 제시할 수 있으며, 아래 패널에 있는 도움말 텍스트는 더 많은 내용을 설명할 것입니다.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:SqueakByExample]]&lt;/div&gt;</summary>
		<author><name>Onionmixer</name></author>
	</entry>
</feed>