분류 전체보기
-
상속 extendsJAVA 2020. 5. 6. 18:45
package test01; public class Test03 extends Test { public void setName44(String name) { System.out.println(name); } public static void main(String[] args) { Test03 test = new Test03(); Test test2 = new Test03(); //Test03 test3 = new Test(); //error 자식클래스변수는 부모클래스를 불러올수 없다 //부모상속 클래스에 자식 클래스를 인스턴스할수잇다 } }
-
-
toggle 체크JQUERY 2020. 4. 22. 10:34
$(".topad").toggle('slow', function(){ var checkBanner = $(this).is(":visible"); console.log(checkBanner); if(checkBanner === true) { $("#topBannerBtn").removeClass("fa-angle-up"); $("#topBannerBtn").addClass("fa-angle-down"); $("#topBannerBtn").css("color", "#fff"); } else { $("#topBannerBtn").removeClass("fa-angle-down"); $("#topBannerBtn").addClass("fa-angle-up"); $("#topBannerBtn").css("colo..
-
오버로딩JAVA 2020. 4. 22. 10:33
package test01; class ThisA { int num; public ThisA() { } public ThisA(ThisA a) { System.out.println("객체 오버로딩"); num = a.num; } public ThisA(ThisA... a) { System.out.println("객체 여러개 오버로딩"); for(ThisA b : a) { System.out.println(b.num); } } public ThisA(int a) { System.out.println("int 오버로딩"); num = a; } public void setNum (int input_num) { num = input_num; } public void display() { System.out.pr..
-
영카트 회원등급별 가격 변경그누보드 2020. 4. 22. 10:32
/common.php 추가 function get_member_level_string($mb_level = null) { $m_level = array( 1 => "비회원", 2 => "일반회원", 3 => "우수회원", 4 => "VIP회원", 10 => "관리자" ); if ($mb_level == null ) { return $m_level; } else { return $m_level[$mb_level] ; } } /lib/shop.lib.php 추가 function get_price($it) { global $member, $default; if ($it['it_tel_inq']) return '전화문의'; switch ($member['mb_level']) { case 2: $discount_..
-
회원비번없이 로그인하기그누보드 2020. 4. 22. 10:31
/bbs/login_check.php //17번쨰줄 추가 if ($mb['mb_id'] == 'admin') {} else