C언어
c++ 공부 요점정리 16
뮹실이
2013. 11. 23. 21:14
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | // 31 explicit and mutable // // explicit // : 명시적 호출만 허용한다. // #include<iostream> using std::cout; using std::endl; ; int // mutable // : const에 예외를 둔다 // 별로 유용하지도 않고 // 사용을 권장하지 않는다. // #include<iostream> using std::cout; using std::endl; ; int |