You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
Dù luôn cẩn thận sử dụng const nhưng đôi khi giá trị của biến vẫn có thể bị thay đổi không rõ lý do.
Ở trường hợp trên, chương trình hẳn sẽ báo lỗi vì không thể chia cho 0 nhưng...
Vì lý do nào đó, biến neg đã mang giá trị là 1
Khảo sát cho thấy, có vẻ như neg đã thay đổi giá trị sau khi làm phép trừ (dòng 21). Tuy nhiên, bản thân operator- không hề có lỗi.
Hãy thử 1 ví dụ khác. Chỉ cần thay đổi nhẹ thứ tự các dòng code.
Và BÙM!
GIẢI QUYẾT
Tôi dự đoán rằng lỗi này xuất hiện do code "nén ép" kiểu (pos - neg).getDecimal(). Cho nên, để an toàn thì hãy chịu khó làm từng bước như sau và hy vọng sẽ debug ra lỗi nếu còn gặp lại.
The text was updated successfully, but these errors were encountered:
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Arial",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
.MsoChpDefault
{mso-style-type:export-only;}
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
{page:WordSection1;}
--> Sent from Mail for Windows 10 From: Kafka Wanna FlySent: 29 Tháng Mười Một 2019 8:02 SATo: tarzanchemgio/BigIntergerProjectCc: SubscribedSubject: Re: [tarzanchemgio/BigIntergerProject] Giá trị đối tượng bị thay đổi không rõ nguyên do (#1) Closed #1.Perfect—You are receiving this because you are subscribed to this thread.Reply to this email directly, view it on GitHub, or unsubscribe.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
singularityCode is fine but resulting weird behaviors in some extreme situationswarningWarning
Dù luôn cẩn thận sử dụng
const
nhưng đôi khi giá trị của biến vẫn có thể bị thay đổi không rõ lý do.Ở trường hợp trên, chương trình hẳn sẽ báo lỗi vì không thể chia cho 0 nhưng...
Vì lý do nào đó, biến
neg
đã mang giá trị là1
Khảo sát cho thấy, có vẻ như
neg
đã thay đổi giá trị sau khi làm phép trừ (dòng 21). Tuy nhiên, bản thânoperator-
không hề có lỗi.Hãy thử 1 ví dụ khác. Chỉ cần thay đổi nhẹ thứ tự các dòng code.
Và BÙM!
GIẢI QUYẾT
Tôi dự đoán rằng lỗi này xuất hiện do code "nén ép" kiểu
(pos - neg).getDecimal()
. Cho nên, để an toàn thì hãy chịu khó làm từng bước như sau và hy vọng sẽ debug ra lỗi nếu còn gặp lại.The text was updated successfully, but these errors were encountered: