Template를 사용한 swap 함수 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 #include using namespace std; template inline void mySwap(T& i, T& j) { T temp = i; i = j; j = temp; } int main() { int x = 3, y = 4; std::swap(x, y); // 표준 라이브러리에 있는 swap 함수 mySwap(x, y); // inline으로 정의한 mySwap() 함수 cout 더보기 C++ 출력 포맷 C++은 출력포맷을 맞춰주기 위해 다양한 포맷 입출력 기능을 제공한다. ios 클래스에 포맷 플래그가 정의되어 있다. https://msdn.microsoft.com/ko-kr/library/5yc0df6d.aspx Manipulators(조작자)는 다음과 같으며, 예를 들어 ios:fixed 와 같은 형태로 사용된다. boolalpha Specifies that variables of type bool appear as true or false in the stream. dec Specifies that integer variables appear in base 10 notation. defaultfloat Configures the flags of an ios_base object to use a d.. 더보기 C# DateTimePicker의 값을 DB에 넣는 방법(동영상 링크 포함) https://www.youtube.com/watch?v=Yb7R7Dr2DBk C# Tutorial 23: How to use DateTimePicker and save date in Database DateTimePicker 속성창에서 - CustomFormat 을 바꾼다 - yyyy-MM-dd 형식으로 - Format을 Custom으로 바꾼다 comm.CommandText = "insert into tblFull (id, Name, Mobile, Date, Gender) values('" + txtID.Text + "','" + txtName.Text + "','" + txtMobile.Text + "','" + dTP.Text + "','" + cbGender.Text + "')"; 와 같이 사용한.. 더보기 이전 1 ··· 10 11 12 13 14 15 16 ··· 34 다음