소켓 프로그래밍 int -> char[], char[] -> int 변환 질문

punxism의 이미지

안녕하세요. 네트워크 프로그래밍 초짜입니다. -.-;

x,y 좌표점을 클라이언트로 전송하고 싶습니다.

int num= 6000;//int형은 4바이트
char ch[4] ={0} ;

라고 선언하고
memcpy(char, num, 4);
이렇게 하면 num에 잇는 6000이 ch에 그대로 복사 되나요?
그럼 ch[4]를 다시 int로 바꾸려면 어떻게 해야 하는지 궁금합니다.

검색하니 itoa()를 이용해 많이 변환하던데. int형이 4바이트라면 char[4]의 크기에 저장할 수도 있는거 아닌가요? 그 방법을 알고 싶습니다.

감사합니다.

chadr의 이미지

우선 32비트 운영체제에서는 int는 4바이트므로 복사는 됩니다..

하지만 빅엔디언, 리틀엔디언에 따라서 저장되는 바이트 위치가 다를겁니다.

하실려는것이 소켓을 이용해서 int형 데이터를 전송하실려고 하는건가요?

그렇다면 그냥 send((char*)&num, sizeof(num); 해서 보내시면 됩니다.
컴퓨터 입장에서는 char[4]이든 int 든 메모리의 연속일 뿐이니까요..

-------------------------------------------------------------------------------
It's better to appear stupid and ask question than to be silent and remain stupid.

ctcquatre의 이미지

punxism wrote:

그럼 ch[4]를 다시 int로 바꾸려면 어떻게 해야 하는지 궁금합니다.

같은방식으로 메모리를 복사해주시면 됩니다.

memcpy(&num,ch,sizeof(int));

윗분의 말씀대로 여차피 연속된 메모리일뿐입니다.

Chaos to Cosmos,
Chaos to Chaos,
Cosmos to Cosmos,
Cosmos to Chaos.

punxism의 이미지

답변 감사드립니다~ ^^*

lovemyin의 이미지

memcpy(char, num, 4);
위의 구문은 memcpy(ch, &num, 4)로 바꿔주셔야 될 것 같구요....
소켓을 통해 상대방으로 전송하실 경우에는 memcpy하시기 전에 int형 변수를 즉 num을 num = htonl(num); 을 호출한 다음 복사 하십시오....
대부분 이런 부분을 체크 안하시는 경우가 많은데 기본적으로 소켓 프로그래밍을 하실때는 항상 바이트 오더를 고려해 주셔야됩니다.
반대로 받은 데이터를 읽을실때는 memcpy(&num, ch, 4) 하시고 num = ntohl(num);을 하시고 사용하세요.
도움이 되시길...

/***************************************************
* 가장 심플한 것이 가장 아름다운 것이다.
***************************************************/

서지훈의 이미지

int num= 6000;//int형은 4바이트
char ch[5] ={0} ;

sprintf(ch , "%d", num);

실제로 원하는 답은 이것 같은데 ...

그리고 itoa()이거 표준 함수 아닙니다.
누군가 전에 만들어서 여기에 올리신건 봤지만...

<어떠한 역경에도 굴하지 않는 '하양 지훈'>

#include <com.h> <C2H5OH.h> <woman.h>
do { if (com) hacking(); if (money) drinking(); if (women) loving(); } while (1);

cppig1995의 이미지

sprintf, itoa : 6000 을 '6' '0' '0' '0' '\0' 으로 변환합니다.
memcpy : 6000 을 '\x17' '\x70' 으로 변환합니다.

즉, sprintf (표준, stdio.h) 나 itoa (비표준, stdlib.h) 를 사용하면
문자열은 "6000" 이 되어 5 bytes (NUL 포함) 의 용량을 차지하고,
memcpy 를 이용하면 문자 연속 (NUL 없으므로 문자열 아님) 은 2 bytes 가 됩니다.

Real programmers /* don't */ comment their code.
If it was hard to write, it should be /* hard to */ read.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.