Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码:
GPRS.write("Accept: */*");
但是 Arudino IDE 以/*注释的开头并给出了这个错误:
/*
java.lang.RuntimeException: Missing the */ from the end of a /* comment */
\我之前试过放,/*但没有用。如何摆脱这个?
\
如果那是 Java 代码,您可以将其编写为一种解决方法:
GPRS.write("Accept: */" + "*");
如果您的 IDE 无法识别/*是在字符串文字中,我会说这是 IDE 中的一个相当大的错误。