首页 \ 问答 \ ASSERT是多余的吗?(Is ASSERT redundant?)

ASSERT是多余的吗?(Is ASSERT redundant?)

ASSERT(pointer);
pointer->x;

在这段代码中,ASSERT似乎是多余的。 如果指针为NULL,则指针 - > x无论如何都会失败。 我的观点正确吗?


ASSERT(pointer);
pointer->x;

In this code, the ASSERT seems to be redundant. If the pointer is NULL, pointer->x will fail anyway. Is my argument correct?


原文:https://stackoverflow.com/questions/1955899
更新时间:2023-12-30 19:12

最满意答案

在.htaccess文件中使用规则。

RewriteRule ^portfolio/(.*)$ /$1 [L,R=301,QSA]

By using a rule in your .htaccess file.

RewriteRule ^portfolio/(.*)$ /$1 [L,R=301,QSA]

相关问答

更多
  • @Dado是的,您需要搜索并替换wordpress2数据库中的所有网址 因为你已经将wordpress1数据库的所有表导入wordpress2所以所有的wordpress1 db仍然存在并存储在wordpress2数据库中,你可以在wp-options表中看到它。 所以你需要搜索和替换db,搜索旧的url并替换为新的url 您可以使用此文件 - https://interconnectit.com/products/search-and-replace-for-wordpress-databases/ 或者 ...
  • 在.htaccess文件中使用规则。 RewriteRule ^portfolio/(.*)$ /$1 [L,R=301,QSA] By using a rule in your .htaccess file. RewriteRule ^portfolio/(.*)$ /$1 [L,R=301,QSA]
  • 使用redirectMatch规则工作 RedirectMatch 301 /category/(.*) /free/$1 Works using the redirectMatch rule RedirectMatch 301 /category/(.*) /free/$1
  • 我相信这部分是这样做的