• 내용으로 건너뛰기

GINS WIKI 긴스 위키

사용자 도구

  • 로그인

사이트 도구

  • 최근 바뀜
  • 미디어 관리자
  • 사이트맵
현재 위치: 긴스위키 GINS wiki » function
추적:

function

검색

아래에서 검색 결과를 찾을 수 있습니다.

정확히 일치
  • 정확히 일치
  • 시작
  • 끝
  • Contains
모든 네임스페이스
  • 모든 네임스페이스
  • language (27)
  • webapp (3)
  • tool (2)
  • regexp (1)
  • sdk (1)
  • wiki (1)
  • winapi (1)
Any time
  • Any time
  • 저번 주
  • 저번 달
  • 저번 년도
조회수로 정렬
  • 조회수로 정렬
  • Sort by last modified

일치하는 문서 이름:

  • Function List

전체 텍스트 결과:

클래스 - 기본 @language:javascript
25 조회 수, 마지막으로 수정됨: 13개월 전
, 파라미터2, 와 같이 콤마로 구분되는 파라미터들 //- 코드의 형식 - 클래스이름 = function( 파라미터 ) { // ... } </code> 실제 사용하는 코드의 예시, 함수처럼... 과 생성자다. <code javascript> //- 간단한 예제 MainClass = function( myId, yourName ) { this.myId = myId; this.your... 를 추가한다. <code javascript> 클래스이름.prototype.함수이름 = function(파라미터) { //... } </code> 사용하는 예제. <code javascri... b' ); _mc.doSomething( 'quit' ); _mc.printThis = function() { return xx; } </code> ====== JSON 표기 =====
PHP 클래스 @language:php
20 조회 수, 마지막으로 수정됨: 13개월 전
=== <code php> class MySample { public $var1; function func1() {} } // ';' 는 필요 없나? -> 없어도 된다. </code> ... ple { public $var = 'class attribute'; //생성자 function __construct( /* param if need */ ) { echo 'construct'.'<br/>'; } //소멸자 function __destruct() { echo 'destruct' . '<br/>'; } } <... ple { public $var = 'class attribute'; //... function foo() { echo $this->var; } } $a = new MySamp
jQuery 재참고 @language:jquery
19 조회 수, 마지막으로 수정됨: 13개월 전
jQuery ===== <code javascript> $(document).ready(function() { $('.poem-stanza').addClass('emphasized'); }... '' 함수를 호출한다. <code javascript> $('#btn_a').click(function () { box_move(); }); </code> ''box_move()'' 함수를 작성 <code javascript> function box_move() { // 'sample_box' 오브젝트(사용할)를 미리 찾아둔다... g</sup> 타입 * 빼도 됨. 그럴 경우 기본값 : ''swing'' * (function) 완료시 호출할 함수로 구성한다. * 빼도 됨. 그럴 경우 아무것도 안함. 기본
Enumerating the Installed Fonts @winapi
15 조회 수, 마지막으로 수정됨: 13개월 전
text in the current font. The GetTabbedTextExtent function computes the width and height of a character stri... y of tab-stop positions. The GetTextExtentPoint32 function computes the width and height of a line of text. ... be sheared to the right. The amount of shear is a function of the height of the character. One way to write... multiple fonts is to use the GetTextExtentPoint32 function after each call to TextOut and add the length to
언어 퀵 요약 @language:corona
13 조회 수, 마지막으로 수정됨: 13개월 전
------------------------------------------ -- 함수 function add1(a,b) return a+b; end -- 함수 : local, global 있다 local function add2(a,b) return a+b end -- 함수 : 변수에 할당 가능 local fn_add3 = function(a, b) return a^b end print(fn_add3(10, 2)) -- 함수... 를 실행하면 fn1()만 무한 실행된다. --[[ local _b = true local function fn1() while _b do print("OK") end print("END
그냥 메모 @language:flash
13 조회 수, 마지막으로 수정됨: 13개월 전
, 0, 1, 1 ); </code> 함수 <code actionscript3> // function <FunctionName>( <ParameterName>:<ParameterType> ) : <ReturnType> {} function openHandler(event:Event):void { } </code> 형 변환 ... Btn.addEventListener(MouseEvent.CLICK, openBox); function openBox(event:MouseEvent):void { // do something... ddEventListener(Event.ENTER_FRAME, openHandler); function openHandler(event:Event):void { } </code> =====
독시젠 A to Z @tool
12 조회 수, 마지막으로 수정됨: 13개월 전
력하고 종료한다. virtual ~RootZero() { cout << __FUNCTION__ << endl; } ///@brief virtual 기능 확인용 테스트 함수.... RootZero { public: RootOne() { cout << __FUNCTION__ << endl; } virtual ~RootOne() { cout << __FUNCTION__ << endl; } ///@brief virtual 기능 확인용 테스트 함수... T virtual bool initHandler() { cout << __FUNCTION__ << endl; return true; } int mnTest; //
jQuery 코드 조각 @language:jquery
8 조회 수, 마지막으로 수정됨: 13개월 전
------ --> </html> <script> $('#btn_a').click(function () { //$(this).hide(); box_move(); }); $('#btn_reset').click(function () { box_reset(); }); // 박스 이동 function box_move() { var _box = $('#sample_box_1'); va... x" }, 200, "easeOutBack", function() { setTimeout(function() { box_reset()
Tutorial - News section @language:php:codeigniter
7 조회 수, 마지막으로 수정됨: 13개월 전
?php class News_model extends CI_Model { public function __construct() { $this->load->database(); } ... ]]에 동작하도록 되어 있다. 아래의 코드를 추가한다. <code php> public function get_news( $slug = FALSE ) { if( $slug == FALSE ... <?php class News extends CI_Controller { public function __construct() { paret::__construct(); $th... ('news_model'); } // 컨트롤러가 모델을 사용하는구나. public function index() { $data['news'] = $this->news_model->
Mediawiki to dokuwiki @webapp
6 조회 수, 마지막으로 수정됨: 13개월 전
xtends auth_basic { var $url = array(); function auth_zbxe() { global $conf; def... 4때문에 destructor를 명시적 선언 register_shutdown_function("auth_zbxe_disconnect", $this); } // check password function checkPass($user, $pass) { $query = "selec... / mail : 문자열, 메일주소 // grps : 배열, 유저의 그룹 목록 function getUserData($user) { global $conf;
node.js @language:nodejs
6 조회 수, 마지막으로 수정됨: 13개월 전
e> =====접속===== <code javascript> _conn.connect(function (err) { if(err){ console.error(err); ... vascript> _conn.query('SELECT 1 + 1 AS solution', function (error, results, fields) { if (error) throw e... avascript> pool.query('SELECT 1 + 1 AS solution', function (error, results, fields) { if (error) throw err... ool = mysql.createPool(...); pool.getConnection(function(err, connection) { if (err) throw err; // 연결실패
기본 형식 @tool:nsis
5 조회 수, 마지막으로 수정됨: 13개월 전
--------------- # 바탕화면에 아이콘을 만들거나 인터넷 바로가기를 만들거나 Function makeShortcutOrInternetshortcut # 프로그램 그룹 만들기 ... ---------------------------- ; Uninstall section Function un.onUninstSuccess HideWindow MessageBox MB_ICO... NFORMATION|MB_OK "$(^Name)は削除されました。" FunctionEnd Function un.onInit FunctionEnd Section Uninstall !insert... 하도록 ===== <code nsis> #뒤의 세문자를 읽어서, 다음 동작을 결정한다. Function MakeShortcutOrInternetshortcut # $0 : 저장할 임시 변수
Velocity @language:2d-game-physics
4 조회 수, 마지막으로 수정됨: 13개월 전
ct's position(move it along the predefined angle) function GameLoop() { movingObject.x = movingObject.x + ... ct's position(move it along the predefined angle) function GameLoop() { // continously add acceleration to... ach frame call game loop to set object's position function GameLoop() { if( moving == true ) { velocit... = time * gravity * 0.5f 코드 예제 <code javascript> function GameLoop() { if( thrown == true && moving == fa
CSS 템플릿 : 고정식 좌측 메뉴 @language:css
4 조회 수, 마지막으로 수정됨: 13개월 전
--> </html> <script> $('#lm-btn-show1').click(function () { hide_fixed_leftmenu(); }); $('#lm-btn-show2').click(function () { hide_fixed_leftmenu(); }); /* 스크롤무관한 왼쪽 메뉴의 on/off */ function hide_fixed_leftmenu() { var _lm = $('.lm-base... "right" }); } } jQuery(document).ready(function () { // 문서 로딩이 끝났다면 할 것들 }); </script> </co
PHP 복붙용 코드 모음 @language:php
4 조회 수, 마지막으로 수정됨: 13개월 전
de> ===== 리턴값을 레퍼런스로 리턴 ===== <code php> public function &argsArray() { static $flags = Array(); retur... 파라미터 함수 ===== * [[http://jp2.php.net/manual/en/function.func-get-args.php]] 기본 <code php> <?php function foo() { $numargs = func_num_args(); echo "Number... , 3); ?> </code> 활용 <code php> //test.php <?php function foo() { include './fga.inc'; } foo('First ar
PHP 파일 디렉토리 @language:php
3 조회 수, 마지막으로 수정됨: 13개월 전
2D, 3D UI @language:unity:ngui
3 조회 수, 마지막으로 수정됨: 13개월 전
포인터 배열 자동 삭제 (auto_ptr 흉내) @language:cpp
2 조회 수, 마지막으로 수정됨: 13개월 전
Js 조각 코드 @language:javascript
2 조회 수, 마지막으로 수정됨: 13개월 전
PHP 날짜 시간 @language:php
2 조회 수, 마지막으로 수정됨: 11개월 전
CodeIgniter @language:php:codeigniter
2 조회 수, 마지막으로 수정됨: 13개월 전
ShaderLab : 기본형식 @language:shader:unity
2 조회 수, 마지막으로 수정됨: 13개월 전
MS 정규식 (좀 다름) @regexp
1 조회 수, 마지막으로 수정됨: 13개월 전
맨티스 Mantis (BTS) @webapp
1 조회 수, 마지막으로 수정됨: 13개월 전
Vue.js 시작 @webapp
1 조회 수, 마지막으로 수정됨: 13개월 전
설치한 도쿠위키 플러그인 @wiki
1 조회 수, 마지막으로 수정됨: 12개월 전
Function List @language:gamemaker
1 조회 수, 마지막으로 수정됨: 13개월 전
PHP 배열 @language:php
1 조회 수, 마지막으로 수정됨: 13개월 전
PHP 함수와 외부 파일 참조 @language:php
1 조회 수, 마지막으로 수정됨: 13개월 전
간단한 3D 파이프라인 @language:shader
1 조회 수, 마지막으로 수정됨: 13개월 전
a @language:shader
1 조회 수, 마지막으로 수정됨: 13개월 전
입력 @language:unity
1 조회 수, 마지막으로 수정됨: 13개월 전
Visual C++ Language Reference (C++/CX) @language:uwp
1 조회 수, 마지막으로 수정됨: 13개월 전
Boost.PropertyTree @sdk:boost
1 조회 수, 마지막으로 수정됨: 13개월 전
Surface Shader @language:shader:unity
1 조회 수, 마지막으로 수정됨: 13개월 전
작동 @language:shader:unity
1 조회 수, 마지막으로 수정됨: 13개월 전

문서 도구

  • 문서 보기
  • 이전 판
  • 역링크
  • 맨 위로
별도로 명시하지 않을 경우, 이 위키의 내용은 다음 라이선스에 따라 사용할 수 있습니다: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki