C++에서 std::stod 함수 군 사용

Jinku Hu 2023년10월12일
C++에서 std::stod 함수 군 사용

이 기사에서는 C++에서std::stod함수 계열을 사용하는 방법에 대한 몇 가지 방법을 설명하고 보여줍니다.

std::stod를 사용하여 C++에서string을 부동 소수점 값으로 변환

std::stofstd::stold와 함께std::stod함수가 STL에서 제공되어string을 부동 소수점으로 변환합니다. 변환이라고 말하지만 문자열 내용을 부동 소수점 값으로 해석하는 것과 비슷합니다. 즉, 이러한 함수는 사전 정의 된 구문 분석 규칙으로 주어진string인수를 스캔하여 유효한 부동 소수점 숫자를 식별하고 해당 유형 개체에 저장합니다.

함수는 반환되는 유형을 나타내는 접미사로 구분됩니다. std::stod객체는double값을 반환하고std::stof는 부동 소수점을 반환하며std::stoldlong double을 반환합니다. 이러한 함수는 C++ 11부터 STL의 일부였으며<string>헤더 파일에 포함되어 있습니다.

아래의 다음 코드 스 니펫에서 다양한 변환 시나리오를 탐색하고 이러한 함수의 구문 분석 규칙을 파헤칠 것입니다. 첫 번째 예는string개체에 숫자와 소수 구분 기호 (.) 만 포함 된 가장 간단한 경우입니다. std::stod함수는 주어진 문자 시퀀스를 유효한 부동 소수점 숫자로 해석하고double유형으로 저장합니다. 소수점 구분 기호는 숫자의 일부로 간주되지 않으므로 쉼표 (,) 문자가 될 수 없습니다.

#include <iostream>
#include <string>

using std::cout;
using std::endl;
using std::string;

int main() {
  string str1 = "123.0";
  string str2 = "0.123";

  auto m1 = std::stod(str1);
  auto m2 = std::stod(str2);

  cout << "std::stod(\"" << str1 << "\") is " << m1 << endl;
  cout << "std::stod(\"" << str2 << "\") is " << m2 << endl;

  return EXIT_SUCCESS;
}

출력:

std::stod("123.0") is 123
std::stod("0.123") is 0.123

또는 숫자가 다른 문자와 혼합 된string객체가있는 경우 두 가지 일반적인 경우를 선택할 수 있습니다. 첫 번째 시나리오 :string개체는 숫자로 시작하고 다른 문자가 뒤 따릅니다. std::stod함수는 숫자가 아닌 첫 번째 문자 (소수 구분 기호 제외)가 발견되기 전에 시작 숫자를 추출합니다.

두 번째 시나리오 :string인수는 숫자가 아닌 문자로 시작합니다.이 경우 함수는std::invalid_argument예외를 발생시키고 변환을 수행 할 수 없습니다.

#include <iostream>
#include <string>

using std::cout;
using std::endl;
using std::string;

int main() {
  string str3 = "123.4 with chars";
  string str4 = "chars 1.2";

  auto m3 = std::stod(str3);
  //    auto m4 = std::stod(str4);

  cout << "std::stod(\"" << str3 << "\") is " << m3 << endl;

  return EXIT_SUCCESS;
}

출력:

std::stod("123.0") is 123
std::stod("0.123") is 0.123

일반적으로std::stod및 해당 함수 계열은 시작 공백 문자를 버립니다. 따라서 여러 개의 선행 공백 문자 뒤에 숫자가있는 문자열을 전달하면 다음 예제와 같이 변환이 성공적으로 수행됩니다.

또한 이러한 함수는size_t*유형의 선택적 인수를 사용할 수 있으며, 호출이 성공하면 처리 된 문자 수를 저장할 수 있습니다. 문자열이 유효한 부동 소수점 숫자로 변환되면 선행 공백 문자도 계산됩니다.

#include <iostream>
#include <string>

using std::cout;
using std::endl;
using std::string;

int main() {
  string str3 = "123.4 with chars";
  string str5 = "           123.4";

  size_t ptr1 = -1;
  size_t ptr2 = -1;

  auto m4 = std::stod(str3, &ptr1);
  auto m5 = std::stod(str5, &ptr2);

  cout << m4 << " - characters processed: " << ptr1 << endl;
  cout << "std::stod(\"" << str5 << "\") is " << m5 << " - " << ptr2
       << " characters processed" << endl;
  cout << "length: " << str5.size() << endl;

  return EXIT_SUCCESS;
}

출력:

123.4 - characters processed: 5
std::stod("           123.4") is 123.4 - 16 characters processed
length: 16
작가: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn Facebook

관련 문장 - C++ Function