<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://valley.egloos.com/rss/style/style.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>이글루스 'casting' 태그 최근글</title>
		<link>http://valley.egloos.com/tag/casting</link>
		<description>casting</description>
		<language>ko</language>
		<pubDate>Thu, 16 Feb 2012 01:25:27 +0900</pubDate>
		<generator>Egloos</generator>
		<item>
	<title><![CDATA[COARSE (Coarsetoys) - casting shadows loser : hkg edition]]></title>
	<link>http://cielgate.egloos.com/1108856</link>
	<guid>http://cielgate.egloos.com/1108856</guid>
	<description>
	<![CDATA[ 
<img 
				src="http://thumb.egloos.net/100x76/http://pds23.egloos.com/pds/201202/16/49/c0131049_4f3bd6be49fa9.jpg"  
				alt="COARSE (Coarsetoys) - casting shadows.." 
				width="100px"  
				height="76pxpx"
				align="left"
				style="border:1px solid #DDDDDD;margin:0 10px 10px 0px;"
				/>   Coarse 의  casting shadows loser : hkg edition 200개 한정.    죠스 들어오니 친구 생겼다.  아... 젠쟝..  아무튼.최근의 제품으로 우울한 포즈가 너무나도 맘에 들었다.포즈..헤어스타일.. 표정.. 눈빛..  아.. 우울해..    전체 구성.우울한 꼬마 [noop], 소라껍데기 쓴 문어(?) [nism] 그리고 연하고 낙엽.  우울함 앞에 귀여운 문어.  연이 좀 높게 떠있어서 입체감이 좀 산다.    천으로 된 연.연의 모양이 paw 라는 토끼(?) 인데 좀 깡패같이 생긴 놈이 있다.. 아마.. 그 놈도 나중에 사진찍게 될려나 ??     가장 멋진 정면 샷.보기만 해도 우울해.. 넘 좋구나~~    찍고보니 뒷모습이 상당히 좋다.더 우울해 보이고 .. 더	]]>
	</description>
	<pubDate>Thu, 16 Feb 2012 01:25:27 +0900</pubDate>
	<dc:creator><![CDATA[지나가는 사람이다.]]></dc:creator>
</item>
<item>
	<title><![CDATA[Flex 형변환 : casting 연산자 : 캐스팅 연산자]]></title>
	<link>http://Cliver.egloos.com/2253211</link>
	<guid>http://Cliver.egloos.com/2253211</guid>
	<description>
	<![CDATA[ 
          int(string:String) = int  String(integer:int) = String              	]]>
	</description>
	<pubDate>Thu, 15 Dec 2011 09:40:56 +0900</pubDate>
	<dc:creator><![CDATA[Cliver's a Omtmoa]]></dc:creator>
</item>
<item>
	<title><![CDATA[PHP : 캐스팅 연산자]]></title>
	<link>http://Cliver.egloos.com/2184652</link>
	<guid>http://Cliver.egloos.com/2184652</guid>
	<description>
	<![CDATA[ 
      casting operator  &amp;gt; (BOOL)&quot;string&quot; = true&amp;gt; (String)'true' = &quot;true&quot;        	]]>
	</description>
	<pubDate>Fri, 12 Aug 2011 09:45:10 +0900</pubDate>
	<dc:creator><![CDATA[Cliver's a Omtmoa]]></dc:creator>
</item>
<item>
	<title><![CDATA[[MFC] CString, BSTR 상호 변환]]></title>
	<link>http://i0nucleus.egloos.com/3013272</link>
	<guid>http://i0nucleus.egloos.com/3013272</guid>
	<description>
	<![CDATA[ 
[MFC] CString &amp;lt;-&amp;gt;  BSTR  변환      1. BSTR를 CString으로 변환  [Source Code]  CString str;  BSTR bstr = L&quot;Test&quot;;  str = (LPCWSTR)bstr;    [MSDN]   LPCWSTR : Pointer to a constant null-terminated string of 16-bit Unicode characters                    typedef CONST WCHAR *LPCWSTR;        2. CString를 BSTR으로 변환.  [Source Code]  CString str = _T(&quot;Test&quot;);  BSTR bstr;  bstr = str.AllocSysString();    [MSD	]]>
	</description>
	<pubDate>Tue, 31 Aug 2010 18:25:31 +0900</pubDate>
	<dc:creator><![CDATA[ZeroNucleus - Programmer]]></dc:creator>
</item>
<item>
	<title><![CDATA[C++의 캐스팅]]></title>
	<link>http://illnessm.egloos.com/1786502</link>
	<guid>http://illnessm.egloos.com/1786502</guid>
	<description>
	<![CDATA[ 
  C의 캐스팅 연산 - 괄호를 쳐서 원하는 타입으로 캐스팅 가능 - 하지만 제약이 없어 프로그램 안정성이 위협받는다static_cast&amp;lt;&amp;gt; - 지정된 타입으로 변경하되, 논리적으로 가능한 타입만을 변환한다.  - 업캐스팅, 다운캐스팅 모두 가능하다.const_cast&amp;lt;&amp;gt; - 상수성(const)이나 휘발성(volatileness)을 없애는데 사용  void funtion(foo *pobj); foo obj; const foo&amp;amp; cobj = obj;  funtion((const_cast&amp;lt;foo*&amp;gt;(&amp;amp;cobj)); //상수성 제거 C++ 스타일funtion((foo*)&amp;amp;cobj); //상수성 제거 C 스타일   - 그 외에 상속관계 이동, 기본연산자 캐스팅에	]]>
	</description>
	<pubDate>Tue, 17 Aug 2010 14:33:09 +0900</pubDate>
	<dc:creator><![CDATA[예수쟁이]]></dc:creator>
</item>
<item>
	<title><![CDATA[[C] int형변수(4byte)를 1byte로 접근방법(char casting)]]></title>
	<link>http://i0nucleus.egloos.com/2617800</link>
	<guid>http://i0nucleus.egloos.com/2617800</guid>
	<description>
	<![CDATA[ 
[C] int형변수(4byte)를 1byte로 접근방법(char casting)    시프트연산과 &amp;amp;연산으로 결과를 얻을 수 있지만, 코드 량이 많아질 것 같아서 포인터를 사용하였습니다.    int형 변수(4Byte)를 char형(1Byte)로 하나씩 불러오는 방법입니다. 16진수 출력.  int형 변수를 char형으로 캐스팅 했습니다.   [Source Code 2]에서는 코드를 줄였습니다.     [Source Code 1]  #include &amp;lt;stdio.h&amp;gt;  int main()  {      int nValue = 0x102030ff;            int *npValue;          unsigned char *cpValue;        npValue = &amp;amp;nV	]]>
	</description>
	<pubDate>Sun, 11 Oct 2009 20:24:24 +0900</pubDate>
	<dc:creator><![CDATA[ZeroNucleus - 讀書百遍義自見]]></dc:creator>
</item>
<item>
	<title><![CDATA[빨강머리 앤 드라마 4편 셜리 맥클레인 조연으로 출연]]></title>
	<link>http://aogg.egloos.com/6010166</link>
	<guid>http://aogg.egloos.com/6010166</guid>
	<description>
	<![CDATA[ 
<img 
				src="http://thumb.egloos.net/76x100/http://pds14.egloos.com/pds/200902/02/00/a0109200_4986e39e1ec6b.jpg"  
				alt="빨강머리 앤 드라마 4편 셜리 맥클레인 조연으로 출연" 
				width="76px"  
				height="100pxpx"
				align="left"
				style="border:1px solid #DDDDDD;margin:0 10px 10px 0px;"
				/>    아카데미 여우주연상에 빛나는 셜리 매클레인(Shirley MacLaine, 73세)이 새로운 앤 드라마 4편 '뉴 비기닝'에 아멜리아 토머스로 출연하기로 결정되고 촬영에 들어갔습니다. 토머스 부인의 친척으로 나오는 것으로 추정되고 마을의 괴팍한 미망인이자 유머를 주는 인물로 조역으로 나오게 되었습니다.   &amp;lt;앤 분위기 스틸컷 (c) 1960 Corbis.com&amp;gt;     셜리 맥클레인은 오스카에 5번 노미네이트 되었고 &amp;lt;애정의 조건&amp;gt;으로 1984년 아카데미상 여우주연상을 수상한 대표적 미국 배우입니다. 이름도 셜리인데 이것도 인연에 속하는 것으로 생각됩니다. 앤 셜리와의 인연이 계속되고 있어서 기쁩니다. 하지만 캐나다 팬은 미국배우는 이제 그만이라고 말하고 있군요. 앤 4편은 점점 	]]>
	</description>
	<pubDate>Thu, 25 Oct 2007 15:58:17 +0900</pubDate>
	<dc:creator><![CDATA[로맨티스트의 빨강머리 앤 블로그 Anne of Green Gables anne3.co.cc]]></dc:creator>
</item>
	</channel>
</rss>

