qt qstring 대입 연산자

gusrbs82의 이미지

혹시

QString a = QString();
QString b = 'bbb';

a = b;

이 구문에서 프로그램이 터지기도 하나요???

값이 옮겨 가지도 않고, 제가 짠 프로그램에서 자꾸

a = b;부분에서 터지네요 ㅠㅠ

물론 제 프로그램에선 서로 다른 widget class들 안에 선언되있고

이리 저리 꼬여 있긴하지만... 함수 로그를 찍어보면

a = b; 지난 다음에 터지네요???

환장할 노릇이면서, 갑자기 궁금해지네요.

shint의 이미지

생성자는 리턴값이 없습니다. 그런데도. 값이 들어가네요.

결과는 나왔지만. 정확한지는 QString 클래스를 사용해서. 확인이 필요해 보입니다.

Qt 책을 보시면. 데이터 입력 및 사용에 관련된 예제 소스가 있을겁니다. 그것을 참고하시는것이 편하시리라 생각됩니다.

class QString
{
public:
	QString()
	{
		m_data = 22;
	}
 
	~QString()
	{
	}
 
	int m_data;
};
 
 
int main()
{
	QString a = QString();
	printf("%d\n", a.m_data);
	return 0;
}
 
 
//출력 결과
22

QString 클래스 관련 링크를 첨부해봅니다.

QString Class
http://doc.qt.io/qt-5/qstring.html

QString/ko
https://wiki.qt.io/QString/ko

[Qt] QString의 문자열 처리
http://norux.me/33

QString Class Reference
http://pyqt.sourceforge.net/Docs/PyQt4/qstring.html

[Tips] QString 을 CString(char* type)으로 전환하기
https://www.qtocube.co.kr/?p=449

QString Convert 관련
http://blog.naver.com/aroniro/220359491076

파일의 특정 부분 입 / 출력하기 (QTextStream::readLine, QString::split)
http://purestarman.tistory.com/213

Qt QString 과 한글 사용 정리
http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=50&MAEULNO=20&no=960950&ref=960950&page=1

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

익명_사용자의 이미지

> 생성자는 리턴값이 없습니다. 그런데도. 값이 들어가네요.
QString a = QString()

위의 코드는 생성자 함수를 호출하고 그 리턴값을 a에 저장하는코드가 아닙니다.
저 코드는 다음과 같이 해석됩니다.

// 1. default construct를 이용하여 unnamed QString 객체를 생성한다. 이해를 위해 unnamed라고 표시
QString unnamed();
// 2. QString class의 copy constructor를 이용하여 위에서 생성된 unamed 객체의 또다른 카피를 만든다.
QString a = unnamed;

댓글 달기

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