- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Ken Thompson 的一篇文章(阅读 here)中看到的这个 quine 没有重现相同的代码。我只是好奇为什么它不起作用?代码现在过时了吗?
quine代码:
char s[] = {
'\t',
'0',
'\n',
'}',
';',
'\n',
'\n',
'/',
'*',
'\n'
};
/*
*The string s is a representation of the body
*of this program from '0'
* to the end
*/
main(){
int i;
printf("char\ts[] = {\n");
for(i = 0; s[i]; i++)
printf("\t%d, \n", s[i]);
printf("%s",s);
}
输出:
char s[] = {
9,
48,
10,
125,
59,
10,
10,
47,
42,
10,
0
};
/*
这些是编译时的编译器警告(self_reproducing.c
是文件名):
self_reproducing.c:20:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
20 | main(){
| ^~~~
self_reproducing.c: In function ‘main’:
self_reproducing.c:23:2: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
23 | printf("char\ts[] = {\n");
| ^~~~~~
self_reproducing.c:23:2: warning: incompatible implicit declaration of built-in function ‘printf’
self_reproducing.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
+++ |+#include <stdio.h>
1 | char s[] = {
糟糕!我忽略了 213 lines deleted
行。所以问题应该是——文章中提到的整个 quine 是什么?
最佳答案
我认为“不工作”意味着不“给出编译器警告”——因为这些原因是不言而喻的——而是你写的其他内容:
This quine [...] isn't reproducing the same code
quine 是 self 复制的,一旦我们添加回 (删除 213 行)
,作者删节了而你删除了 - 这代表了代码的其余部分,加上结束 chars
数组的 0
NUL 终止符:
/*
* The string s is a representation of the body
* of this program from '0'
* to the end
*/
您的困惑似乎源于程序如何打印所述数组中字符的整数 ASCII 值,但它最初声明这些字符如 '\t'
、'\n'
,等等。但是具有适当值的整数是有效的char
,因此代码是 self 复制的,即使元素被格式化为整数而不是'c'
characters 与原始来源一样。无论哪种方式,我们最终都会得到一个包含相同 char
的数组;只是该数组以不同但等效的方式初始化。
为什么将它们打印为整数?因为这比必须为每个元素引用、有条件地转义等更容易/更短。它映射到相同的机器代码/数组内容,但需要更少的 faff 来对 quine 进行编程。
作者竟然写了这个!
(The purist will note that the program is not precisely a self-reproducing program, but wIll produce a self-reproducing program.)
至于编辑/添加的问题,整个quine当然会添加代表程序其余部分所需的其余字符。作者大概是为了能够更轻松地说明他们的观点而删减了该程序,而无需通过占用整页来将其带回家。
关于c - 为什么 Ken Thompson 在 "Reflections on Trusting Trust"中提到的 C quine 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62679621/
client.on('message', message => { if (message.content === `L!hug`) { if (!message.menti
我往往会忘记我 stash 了一些更改。当存储空间不为空时,我希望看到 git status 输出中提到的存储空间。有没有办法让 git status 这样做? 最佳答案 This is now a
[object Object] 是 JavaScript 对象的默认字符串表示。 如果只是 [Object] 或 [object] 我会理解,但为什么是 [object Object]?为什么第一个单
Jython 可以在这里提供帮助吗?我应该在 Jython 之上运行 Grails,如果是,如何运行?不知何故,我应该能够在同一个 JVM 上运行 Grails 和 Python 脚本。还有其他可能性
http://download.oracle.com/javase/tutorial/collections/interfaces/set.html 为什么Set接口(interface)会列出Col
我正在使用 keras 编写一个 ner 模型,并将模型部署到tensorflow-serving。然后使用http请求来获取预测结果。 这是我的代码: EMBEDDING_OUT_DIM = 128
我是一名优秀的程序员,十分优秀!