3바이트 자료형 만들기

김유석의 이미지

C 에서 3byte unsigned int 형 자료형을 만들려면 어떻게 해야 하나요?

cppig1995의 이미지

아래의 모든 내용들은 1바이트=1옥텟=8비트라는 가정하에;;
만약 시스템이 24비트 정수형을 지원한다면 uint24_t가 있을테고,
24비트 정수형이 없더라도 신경을 썼더라면 uint_least24_t가 있을것입니다.
아니면

struct uint_24
{
    unsigned n : 24;
}

정도이면 되려나요? 단, unsigned가 3바이트 이상이라는 가정하에.

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

cppig1995의 이미지

앗 까먹었네요. ?int*_t 형태(?=0혹은1문자,*=0~무한문자대치)의 자료형을 사용하려면 stdint.h를 포함해주어야 합니다. inttypes.h를 포함하셔도 됩니다. inttypes는 stdint를 포함하면서 단순 자료형 외의 다른 기능들을 제공해주죠.

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

김유석의 이미지

아. 구조체를 사용해서 만들면 되는군요. 감사합니다.

kpserv의 이미지

4바이트를 3바이트 처럼 쓰면 되지 않을까요???

#define DEBUG printf( "%s, %s, %d\n", __FILE__, __FUNCTION__, __LINE__ );

익명사용자의 이미지

구조체 만들어서 쓴다고 해서 의미가 있을까요...?
sizeof(uint_24) 해보시면 아시겠지만 4가 나옵니다.
그냥 4바이트 데이터형을 쓰시는것이 어떨까하네요.
굳이 3바이트 데이터형을 만들려고 할필요까지는....
성능상의 문제도 있고요..

harisoo의 이미지

typedef struct{
unsigned char value1;
unsigned char value2;
unsigned char value3;
}__attribute__ ((packed)) test_s;

이렇게 선언하셔서 사용하시면 됩니다.

저 구조체를 sizeof()하면 항상 3바이트가 나옵니다.

cppig1995.anon의 이미지

이런 문제에서는 특정 벤더에 의존적인 방법마저 답이 될 수 있겠군요.
__attribute__문은 gcc 확장 기능으로 알고 있습니다만.

익명사용자의 이미지

typedef char Three[3];
union { Three t; char c[3]; } u;

보통의 int형처럼 쓰는 방법은 없고 이게 그나마... 어쨌거나 Three가 3바이트라는 점은 가장 확실하게 보장 되니까요. 접근할려면 형변환을 하던지 공용체쓰면 되고.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.